blob: 59dd5be3577582b72e70dfc74a40856998f6eeef [file] [log] [blame]
Angel Pons6e5aabd2020-03-23 23:44:42 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002
Elyes HAOUASf97c1c92019-12-03 18:22:06 +01003#include <commonlib/helpers.h>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01004#include <console/console.h>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01005#include <string.h>
Subrata Banik53b08c32018-12-10 14:11:35 +05306#include <arch/cpu.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02007#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02008#include <device/pci_ops.h>
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01009#include <northbridge/intel/sandybridge/chip.h>
10#include <device/pci_def.h>
11#include <delay.h>
Elyes HAOUAS1d6484a2020-07-10 11:18:11 +020012#include <types.h>
Elyes HAOUAS1d3b3c32019-05-04 08:12:42 +020013
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010014#include "raminit_native.h"
15#include "raminit_common.h"
Angel Pons7f6586f2020-03-21 12:45:12 +010016#include "raminit_tables.h"
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010017#include "sandybridge.h"
18
Angel Pons7c49cb82020-03-16 23:17:32 +010019/* FIXME: no support for 3-channel chipsets */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010020
21static void sfence(void)
22{
23 asm volatile ("sfence");
24}
25
Angel Pons7c49cb82020-03-16 23:17:32 +010026/* Toggle IO reset bit */
27static void toggle_io_reset(void)
28{
Angel Pons88521882020-01-05 20:21:20 +010029 u32 r32 = MCHBAR32(MC_INIT_STATE_G);
Angel Ponsdc5539f2020-11-12 12:44:25 +010030 MCHBAR32(MC_INIT_STATE_G) = r32 | (1 << 5);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010031 udelay(1);
Angel Ponsdc5539f2020-11-12 12:44:25 +010032 MCHBAR32(MC_INIT_STATE_G) = r32 & ~(1 << 5);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010033 udelay(1);
34}
35
36static u32 get_XOVER_CLK(u8 rankmap)
37{
38 return rankmap << 24;
39}
40
41static u32 get_XOVER_CMD(u8 rankmap)
42{
43 u32 reg;
44
Angel Pons7c49cb82020-03-16 23:17:32 +010045 /* Enable xover cmd */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010046 reg = 0x4000;
47
Angel Pons7c49cb82020-03-16 23:17:32 +010048 /* Enable xover ctl */
49 if (rankmap & 0x03)
50 reg |= (1 << 17);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010051
Angel Pons7c49cb82020-03-16 23:17:32 +010052 if (rankmap & 0x0c)
53 reg |= (1 << 26);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010054
55 return reg;
56}
57
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010058void dram_find_common_params(ramctr_timing *ctrl)
59{
60 size_t valid_dimms;
61 int channel, slot;
62 dimm_info *dimms = &ctrl->info;
63
64 ctrl->cas_supported = (1 << (MAX_CAS - MIN_CAS + 1)) - 1;
65 valid_dimms = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +010066
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010067 FOR_ALL_CHANNELS for (slot = 0; slot < 2; slot++) {
Angel Pons7c49cb82020-03-16 23:17:32 +010068
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010069 const dimm_attr *dimm = &dimms->dimm[channel][slot];
70 if (dimm->dram_type != SPD_MEMORY_TYPE_SDRAM_DDR3)
71 continue;
Angel Pons7c49cb82020-03-16 23:17:32 +010072
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010073 valid_dimms++;
74
75 /* Find all possible CAS combinations */
76 ctrl->cas_supported &= dimm->cas_supported;
77
78 /* Find the smallest common latencies supported by all DIMMs */
Angel Pons7c49cb82020-03-16 23:17:32 +010079 ctrl->tCK = MAX(ctrl->tCK, dimm->tCK);
80 ctrl->tAA = MAX(ctrl->tAA, dimm->tAA);
81 ctrl->tWR = MAX(ctrl->tWR, dimm->tWR);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010082 ctrl->tRCD = MAX(ctrl->tRCD, dimm->tRCD);
83 ctrl->tRRD = MAX(ctrl->tRRD, dimm->tRRD);
Angel Pons7c49cb82020-03-16 23:17:32 +010084 ctrl->tRP = MAX(ctrl->tRP, dimm->tRP);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010085 ctrl->tRAS = MAX(ctrl->tRAS, dimm->tRAS);
86 ctrl->tRFC = MAX(ctrl->tRFC, dimm->tRFC);
87 ctrl->tWTR = MAX(ctrl->tWTR, dimm->tWTR);
88 ctrl->tRTP = MAX(ctrl->tRTP, dimm->tRTP);
89 ctrl->tFAW = MAX(ctrl->tFAW, dimm->tFAW);
Dan Elkoubydabebc32018-04-13 18:47:10 +030090 ctrl->tCWL = MAX(ctrl->tCWL, dimm->tCWL);
91 ctrl->tCMD = MAX(ctrl->tCMD, dimm->tCMD);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010092 }
93
94 if (!ctrl->cas_supported)
Angel Pons7c49cb82020-03-16 23:17:32 +010095 die("Unsupported DIMM combination. DIMMS do not support common CAS latency");
96
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +010097 if (!valid_dimms)
98 die("No valid DIMMs found");
99}
100
Angel Pons88521882020-01-05 20:21:20 +0100101void dram_xover(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100102{
103 u32 reg;
104 int channel;
105
106 FOR_ALL_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +0100107 /* Enable xover clk */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100108 reg = get_XOVER_CLK(ctrl->rankmap[channel]);
Angel Pons88521882020-01-05 20:21:20 +0100109 printram("XOVER CLK [%x] = %x\n", GDCRCKPICODE_ch(channel), reg);
110 MCHBAR32(GDCRCKPICODE_ch(channel)) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100111
Angel Pons7c49cb82020-03-16 23:17:32 +0100112 /* Enable xover ctl & xover cmd */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100113 reg = get_XOVER_CMD(ctrl->rankmap[channel]);
Angel Pons88521882020-01-05 20:21:20 +0100114 printram("XOVER CMD [%x] = %x\n", GDCRCMDPICODING_ch(channel), reg);
115 MCHBAR32(GDCRCMDPICODING_ch(channel)) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100116 }
117}
118
Patrick Rudolph19c3dad2016-11-26 11:37:45 +0100119static void dram_odt_stretch(ramctr_timing *ctrl, int channel)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100120{
Angel Pons89ae6b82020-03-21 13:23:32 +0100121 u32 addr, stretch;
Patrick Rudolph19c3dad2016-11-26 11:37:45 +0100122
123 stretch = ctrl->ref_card_offset[channel];
Angel Pons7c49cb82020-03-16 23:17:32 +0100124 /*
125 * ODT stretch:
126 * Delay ODT signal by stretch value. Useful for multi DIMM setups on the same channel.
127 */
Angel Pons89ae6b82020-03-21 13:23:32 +0100128 if (IS_SANDY_CPU(ctrl->cpu) && IS_SANDY_CPU_C(ctrl->cpu)) {
Patrick Rudolph19c3dad2016-11-26 11:37:45 +0100129 if (stretch == 2)
130 stretch = 3;
Angel Pons7c49cb82020-03-16 23:17:32 +0100131
Angel Pons88521882020-01-05 20:21:20 +0100132 addr = SCHED_SECOND_CBIT_ch(channel);
Angel Ponsdc5539f2020-11-12 12:44:25 +0100133 MCHBAR32_AND_OR(addr, ~(0xf << 10), (stretch << 12) | (stretch << 10));
Angel Pons7c49cb82020-03-16 23:17:32 +0100134 printk(RAM_DEBUG, "OTHP Workaround [%x] = %x\n", addr, MCHBAR32(addr));
Patrick Rudolph19c3dad2016-11-26 11:37:45 +0100135 } else {
Angel Pons88521882020-01-05 20:21:20 +0100136 addr = TC_OTHP_ch(channel);
Angel Ponsdc5539f2020-11-12 12:44:25 +0100137 MCHBAR32_AND_OR(addr, ~(0xf << 16), (stretch << 16) | (stretch << 18));
Iru Cai89af71c2018-08-16 16:46:27 +0800138 printk(RAM_DEBUG, "OTHP [%x] = %x\n", addr, MCHBAR32(addr));
Patrick Rudolph19c3dad2016-11-26 11:37:45 +0100139 }
140}
141
142void dram_timing_regs(ramctr_timing *ctrl)
143{
144 u32 reg, addr, val32;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100145 int channel;
146
147 FOR_ALL_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +0100148 /* BIN parameters */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100149 reg = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100150 reg |= (ctrl->tRCD << 0);
151 reg |= (ctrl->tRP << 4);
152 reg |= (ctrl->CAS << 8);
153 reg |= (ctrl->CWL << 12);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100154 reg |= (ctrl->tRAS << 16);
Angel Pons88521882020-01-05 20:21:20 +0100155 printram("DBP [%x] = %x\n", TC_DBP_ch(channel), reg);
156 MCHBAR32(TC_DBP_ch(channel)) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100157
Angel Pons7c49cb82020-03-16 23:17:32 +0100158 /* Regular access parameters */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100159 reg = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100160 reg |= (ctrl->tRRD << 0);
161 reg |= (ctrl->tRTP << 4);
162 reg |= (ctrl->tCKE << 8);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100163 reg |= (ctrl->tWTR << 12);
164 reg |= (ctrl->tFAW << 16);
Angel Pons7c49cb82020-03-16 23:17:32 +0100165 reg |= (ctrl->tWR << 24);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100166 reg |= (3 << 30);
Angel Pons88521882020-01-05 20:21:20 +0100167 printram("RAP [%x] = %x\n", TC_RAP_ch(channel), reg);
168 MCHBAR32(TC_RAP_ch(channel)) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100169
Angel Pons7c49cb82020-03-16 23:17:32 +0100170 /* Other parameters */
Angel Pons88521882020-01-05 20:21:20 +0100171 addr = TC_OTHP_ch(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100172 reg = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100173 reg |= (ctrl->tXPDLL << 0);
174 reg |= (ctrl->tXP << 5);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100175 reg |= (ctrl->tAONPD << 8);
176 reg |= 0xa0000;
177 printram("OTHP [%x] = %x\n", addr, reg);
178 MCHBAR32(addr) = reg;
179
Angel Ponsca2f68a2020-03-22 13:15:12 +0100180 /* Debug parameters - only applies to Ivy Bridge */
181 if (IS_IVY_CPU(ctrl->cpu)) {
182 reg = 0;
183
184 /*
185 * If tXP and tXPDLL are very high, we need to increase them by one.
186 * This can only happen on Ivy Bridge, and when overclocking the RAM.
187 */
188 if (ctrl->tXP >= 8)
189 reg |= (1 << 12);
190
191 if (ctrl->tXPDLL >= 32)
192 reg |= (1 << 13);
193
194 MCHBAR32(TC_DTP_ch(channel)) = reg;
195 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100196
Felix Held9fe248f2018-07-31 20:59:45 +0200197 MCHBAR32_OR(addr, 0x00020000);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100198
Patrick Rudolph19c3dad2016-11-26 11:37:45 +0100199 dram_odt_stretch(ctrl, channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100200
Patrick Rudolph5ee9bc12017-10-31 10:49:52 +0100201 /*
Angel Pons7c49cb82020-03-16 23:17:32 +0100202 * TC-Refresh timing parameters:
203 * The tREFIx9 field should be programmed to minimum of 8.9 * tREFI (to allow
204 * for possible delays from ZQ or isoc) and tRASmax (70us) divided by 1024.
Patrick Rudolph5ee9bc12017-10-31 10:49:52 +0100205 */
206 val32 = MIN((ctrl->tREFI * 89) / 10, (70000 << 8) / ctrl->tCK);
207
Angel Pons7c49cb82020-03-16 23:17:32 +0100208 reg = ((ctrl->tREFI & 0xffff) << 0) |
209 ((ctrl->tRFC & 0x01ff) << 16) | (((val32 / 1024) & 0x7f) << 25);
210
Angel Pons88521882020-01-05 20:21:20 +0100211 printram("REFI [%x] = %x\n", TC_RFTP_ch(channel), reg);
212 MCHBAR32(TC_RFTP_ch(channel)) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100213
Angel Ponsdc5539f2020-11-12 12:44:25 +0100214 MCHBAR32_OR(TC_RFP_ch(channel), 0xff);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100215
Angel Pons7c49cb82020-03-16 23:17:32 +0100216 /* Self-refresh timing parameters */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100217 reg = 0;
218 val32 = tDLLK;
Angel Pons7c49cb82020-03-16 23:17:32 +0100219 reg = (reg & ~0x00000fff) | (val32 << 0);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100220 val32 = ctrl->tXSOffset;
Angel Pons7c49cb82020-03-16 23:17:32 +0100221 reg = (reg & ~0x0000f000) | (val32 << 12);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100222 val32 = tDLLK - ctrl->tXSOffset;
Angel Pons7c49cb82020-03-16 23:17:32 +0100223 reg = (reg & ~0x03ff0000) | (val32 << 16);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100224 val32 = ctrl->tMOD - 8;
Angel Pons7c49cb82020-03-16 23:17:32 +0100225 reg = (reg & ~0xf0000000) | (val32 << 28);
226 printram("SRFTP [%x] = %x\n", TC_SRFTP_ch(channel), reg);
Angel Pons88521882020-01-05 20:21:20 +0100227 MCHBAR32(TC_SRFTP_ch(channel)) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100228 }
229}
230
231void dram_dimm_mapping(ramctr_timing *ctrl)
232{
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100233 int channel;
234 dimm_info *info = &ctrl->info;
235
236 FOR_ALL_CHANNELS {
Nico Huberac4f2162017-10-01 18:14:43 +0200237 dimm_attr *dimmA, *dimmB;
238 u32 reg = 0;
239
Angel Pons7c49cb82020-03-16 23:17:32 +0100240 if (info->dimm[channel][0].size_mb >= info->dimm[channel][1].size_mb) {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100241 dimmA = &info->dimm[channel][0];
242 dimmB = &info->dimm[channel][1];
Angel Pons7c49cb82020-03-16 23:17:32 +0100243 reg |= (0 << 16);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100244 } else {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100245 dimmA = &info->dimm[channel][1];
246 dimmB = &info->dimm[channel][0];
Angel Pons7c49cb82020-03-16 23:17:32 +0100247 reg |= (1 << 16);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100248 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100249
Nico Huberac4f2162017-10-01 18:14:43 +0200250 if (dimmA && (dimmA->ranks > 0)) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100251 reg |= (dimmA->size_mb / 256) << 0;
252 reg |= (dimmA->ranks - 1) << 17;
Nico Huberac4f2162017-10-01 18:14:43 +0200253 reg |= (dimmA->width / 8 - 1) << 19;
254 }
255
256 if (dimmB && (dimmB->ranks > 0)) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100257 reg |= (dimmB->size_mb / 256) << 8;
258 reg |= (dimmB->ranks - 1) << 18;
Nico Huberac4f2162017-10-01 18:14:43 +0200259 reg |= (dimmB->width / 8 - 1) << 20;
260 }
261
Patrick Rudolph4e0cd822020-05-01 18:35:36 +0200262 /*
263 * Rank interleave: Bit 16 of the physical address space sets
264 * the rank to use in a dual single rank DIMM configuration.
265 * That results in every 64KiB being interleaved between two ranks.
266 */
267 reg |= 1 << 21;
268 /* Enhanced interleave */
269 reg |= 1 << 22;
Nico Huberac4f2162017-10-01 18:14:43 +0200270
Angel Pons7c49cb82020-03-16 23:17:32 +0100271 if ((dimmA && (dimmA->ranks > 0)) || (dimmB && (dimmB->ranks > 0))) {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100272 ctrl->mad_dimm[channel] = reg;
273 } else {
274 ctrl->mad_dimm[channel] = 0;
275 }
276 }
277}
278
Patrick Rudolphdd662872017-10-28 18:20:11 +0200279void dram_dimm_set_mapping(ramctr_timing *ctrl, int training)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100280{
281 int channel;
Patrick Rudolphdd662872017-10-28 18:20:11 +0200282 u32 ecc;
283
284 if (ctrl->ecc_enabled)
285 ecc = training ? (1 << 24) : (3 << 24);
286 else
287 ecc = 0;
288
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100289 FOR_ALL_CHANNELS {
Patrick Rudolphdd662872017-10-28 18:20:11 +0200290 MCHBAR32(MAD_DIMM(channel)) = ctrl->mad_dimm[channel] | ecc;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100291 }
Patrick Rudolphdd662872017-10-28 18:20:11 +0200292
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +0200293 if (ctrl->ecc_enabled)
294 udelay(10);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100295}
296
Angel Pons88521882020-01-05 20:21:20 +0100297void dram_zones(ramctr_timing *ctrl, int training)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100298{
299 u32 reg, ch0size, ch1size;
300 u8 val;
301 reg = 0;
302 val = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100303
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100304 if (training) {
305 ch0size = ctrl->channel_size_mb[0] ? 256 : 0;
306 ch1size = ctrl->channel_size_mb[1] ? 256 : 0;
307 } else {
308 ch0size = ctrl->channel_size_mb[0];
309 ch1size = ctrl->channel_size_mb[1];
310 }
311
312 if (ch0size >= ch1size) {
Angel Pons88521882020-01-05 20:21:20 +0100313 reg = MCHBAR32(MAD_ZR);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100314 val = ch1size / 256;
315 reg = (reg & ~0xff000000) | val << 24;
Angel Pons7c49cb82020-03-16 23:17:32 +0100316 reg = (reg & ~0x00ff0000) | (2 * val) << 16;
Angel Pons88521882020-01-05 20:21:20 +0100317 MCHBAR32(MAD_ZR) = reg;
Felix Helddee167e2019-12-30 17:30:16 +0100318 MCHBAR32(MAD_CHNL) = 0x24;
Angel Pons7c49cb82020-03-16 23:17:32 +0100319
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100320 } else {
Angel Pons88521882020-01-05 20:21:20 +0100321 reg = MCHBAR32(MAD_ZR);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100322 val = ch0size / 256;
323 reg = (reg & ~0xff000000) | val << 24;
Angel Pons7c49cb82020-03-16 23:17:32 +0100324 reg = (reg & ~0x00ff0000) | (2 * val) << 16;
Angel Pons88521882020-01-05 20:21:20 +0100325 MCHBAR32(MAD_ZR) = reg;
Felix Helddee167e2019-12-30 17:30:16 +0100326 MCHBAR32(MAD_CHNL) = 0x21;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100327 }
328}
329
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100330#define DEFAULT_PCI_MMIO_SIZE 2048
331
332static unsigned int get_mmio_size(void)
333{
334 const struct device *dev;
335 const struct northbridge_intel_sandybridge_config *cfg = NULL;
336
Angel Ponsb31d1d72020-01-10 01:35:09 +0100337 dev = pcidev_path_on_root(PCI_DEVFN(0, 0));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100338 if (dev)
339 cfg = dev->chip_info;
340
341 /* If this is zero, it just means devicetree.cb didn't set it */
342 if (!cfg || cfg->pci_mmio_size == 0)
343 return DEFAULT_PCI_MMIO_SIZE;
344 else
345 return cfg->pci_mmio_size;
346}
347
Patrick Rudolph05d4bf7e2017-10-28 16:36:09 +0200348/*
349 * Returns the ECC mode the NB is running at. It takes precedence over ECC capability.
350 * The ME/PCU/.. has the ability to change this.
351 * Return 0: ECC is optional
352 * Return 1: ECC is forced
353 */
354bool get_host_ecc_forced(void)
355{
356 /* read Capabilities A Register */
357 const u32 reg32 = pci_read_config32(HOST_BRIDGE, CAPID0_A);
358 return !!(reg32 & (1 << 24));
359}
360
361/*
362 * Returns the ECC capability.
363 * The ME/PCU/.. has the ability to change this.
364 * Return 0: ECC is disabled
365 * Return 1: ECC is possible
366 */
367bool get_host_ecc_cap(void)
368{
369 /* read Capabilities A Register */
370 const u32 reg32 = pci_read_config32(HOST_BRIDGE, CAPID0_A);
371 return !(reg32 & (1 << 25));
372}
373
Angel Pons88521882020-01-05 20:21:20 +0100374void dram_memorymap(ramctr_timing *ctrl, int me_uma_size)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100375{
Angel Pons7c49cb82020-03-16 23:17:32 +0100376 u32 reg, val, reclaim, tom, gfxstolen, gttsize;
377 size_t tsegbase, toludbase, remapbase, gfxstolenbase, mmiosize, gttbase;
378 size_t tsegsize, touudbase, remaplimit, mestolenbase, tsegbasedelta;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100379 uint16_t ggc;
380
381 mmiosize = get_mmio_size();
382
Felix Held87ddea22020-01-26 04:55:27 +0100383 ggc = pci_read_config16(HOST_BRIDGE, GGC);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100384 if (!(ggc & 2)) {
385 gfxstolen = ((ggc >> 3) & 0x1f) * 32;
Angel Pons7c49cb82020-03-16 23:17:32 +0100386 gttsize = ((ggc >> 8) & 0x3);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100387 } else {
388 gfxstolen = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100389 gttsize = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100390 }
391
392 tsegsize = CONFIG_SMM_TSEG_SIZE >> 20;
393
394 tom = ctrl->channel_size_mb[0] + ctrl->channel_size_mb[1];
395
396 mestolenbase = tom - me_uma_size;
397
Angel Pons7c49cb82020-03-16 23:17:32 +0100398 toludbase = MIN(4096 - mmiosize + gfxstolen + gttsize + tsegsize, tom - me_uma_size);
399
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100400 gfxstolenbase = toludbase - gfxstolen;
401 gttbase = gfxstolenbase - gttsize;
402
403 tsegbase = gttbase - tsegsize;
404
Angel Pons7c49cb82020-03-16 23:17:32 +0100405 /* Round tsegbase down to nearest address aligned to tsegsize */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100406 tsegbasedelta = tsegbase & (tsegsize - 1);
407 tsegbase &= ~(tsegsize - 1);
408
409 gttbase -= tsegbasedelta;
410 gfxstolenbase -= tsegbasedelta;
411 toludbase -= tsegbasedelta;
412
Angel Pons7c49cb82020-03-16 23:17:32 +0100413 /* Test if it is possible to reclaim a hole in the RAM addressing */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100414 if (tom - me_uma_size > toludbase) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100415 /* Reclaim is possible */
416 reclaim = 1;
417 remapbase = MAX(4096, tom - me_uma_size);
418 remaplimit = remapbase + MIN(4096, tom - me_uma_size) - toludbase - 1;
419 touudbase = remaplimit + 1;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100420 } else {
421 // Reclaim not possible
Angel Pons7c49cb82020-03-16 23:17:32 +0100422 reclaim = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100423 touudbase = tom - me_uma_size;
424 }
425
Angel Pons7c49cb82020-03-16 23:17:32 +0100426 /* Update memory map in PCIe configuration space */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100427 printk(BIOS_DEBUG, "Update PCI-E configuration space:\n");
428
Angel Pons7c49cb82020-03-16 23:17:32 +0100429 /* TOM (top of memory) */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100430 reg = pci_read_config32(HOST_BRIDGE, TOM);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100431 val = tom & 0xfff;
432 reg = (reg & ~0xfff00000) | (val << 20);
Felix Held4902fee2019-12-28 18:09:47 +0100433 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", TOM, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100434 pci_write_config32(HOST_BRIDGE, TOM, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100435
Angel Ponsb31d1d72020-01-10 01:35:09 +0100436 reg = pci_read_config32(HOST_BRIDGE, TOM + 4);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100437 val = tom & 0xfffff000;
438 reg = (reg & ~0x000fffff) | (val >> 12);
Felix Held4902fee2019-12-28 18:09:47 +0100439 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", TOM + 4, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100440 pci_write_config32(HOST_BRIDGE, TOM + 4, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100441
Angel Pons7c49cb82020-03-16 23:17:32 +0100442 /* TOLUD (Top Of Low Usable DRAM) */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100443 reg = pci_read_config32(HOST_BRIDGE, TOLUD);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100444 val = toludbase & 0xfff;
445 reg = (reg & ~0xfff00000) | (val << 20);
Felix Held4902fee2019-12-28 18:09:47 +0100446 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", TOLUD, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100447 pci_write_config32(HOST_BRIDGE, TOLUD, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100448
Angel Pons7c49cb82020-03-16 23:17:32 +0100449 /* TOUUD LSB (Top Of Upper Usable DRAM) */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100450 reg = pci_read_config32(HOST_BRIDGE, TOUUD);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100451 val = touudbase & 0xfff;
452 reg = (reg & ~0xfff00000) | (val << 20);
Felix Held4902fee2019-12-28 18:09:47 +0100453 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", TOUUD, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100454 pci_write_config32(HOST_BRIDGE, TOUUD, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100455
Angel Pons7c49cb82020-03-16 23:17:32 +0100456 /* TOUUD MSB */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100457 reg = pci_read_config32(HOST_BRIDGE, TOUUD + 4);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100458 val = touudbase & 0xfffff000;
459 reg = (reg & ~0x000fffff) | (val >> 12);
Felix Held4902fee2019-12-28 18:09:47 +0100460 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", TOUUD + 4, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100461 pci_write_config32(HOST_BRIDGE, TOUUD + 4, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100462
463 if (reclaim) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100464 /* REMAP BASE */
465 pci_write_config32(HOST_BRIDGE, REMAPBASE, remapbase << 20);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100466 pci_write_config32(HOST_BRIDGE, REMAPBASE + 4, remapbase >> 12);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100467
Angel Pons7c49cb82020-03-16 23:17:32 +0100468 /* REMAP LIMIT */
469 pci_write_config32(HOST_BRIDGE, REMAPLIMIT, remaplimit << 20);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100470 pci_write_config32(HOST_BRIDGE, REMAPLIMIT + 4, remaplimit >> 12);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100471 }
Angel Pons7c49cb82020-03-16 23:17:32 +0100472 /* TSEG */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100473 reg = pci_read_config32(HOST_BRIDGE, TSEGMB);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100474 val = tsegbase & 0xfff;
475 reg = (reg & ~0xfff00000) | (val << 20);
Felix Held4902fee2019-12-28 18:09:47 +0100476 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", TSEGMB, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100477 pci_write_config32(HOST_BRIDGE, TSEGMB, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100478
Angel Pons7c49cb82020-03-16 23:17:32 +0100479 /* GFX stolen memory */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100480 reg = pci_read_config32(HOST_BRIDGE, BDSM);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100481 val = gfxstolenbase & 0xfff;
482 reg = (reg & ~0xfff00000) | (val << 20);
Felix Held4902fee2019-12-28 18:09:47 +0100483 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", BDSM, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100484 pci_write_config32(HOST_BRIDGE, BDSM, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100485
Angel Pons7c49cb82020-03-16 23:17:32 +0100486 /* GTT stolen memory */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100487 reg = pci_read_config32(HOST_BRIDGE, BGSM);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100488 val = gttbase & 0xfff;
489 reg = (reg & ~0xfff00000) | (val << 20);
Felix Held4902fee2019-12-28 18:09:47 +0100490 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", BGSM, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100491 pci_write_config32(HOST_BRIDGE, BGSM, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100492
493 if (me_uma_size) {
Angel Ponsb31d1d72020-01-10 01:35:09 +0100494 reg = pci_read_config32(HOST_BRIDGE, MESEG_MASK + 4);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100495 val = (0x80000 - me_uma_size) & 0xfffff000;
496 reg = (reg & ~0x000fffff) | (val >> 12);
Felix Held651f99f2019-12-30 16:28:48 +0100497 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", MESEG_MASK + 4, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100498 pci_write_config32(HOST_BRIDGE, MESEG_MASK + 4, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100499
Angel Pons7c49cb82020-03-16 23:17:32 +0100500 /* ME base */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100501 reg = pci_read_config32(HOST_BRIDGE, MESEG_BASE);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100502 val = mestolenbase & 0xfff;
503 reg = (reg & ~0xfff00000) | (val << 20);
Felix Held651f99f2019-12-30 16:28:48 +0100504 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", MESEG_BASE, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100505 pci_write_config32(HOST_BRIDGE, MESEG_BASE, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100506
Angel Ponsb31d1d72020-01-10 01:35:09 +0100507 reg = pci_read_config32(HOST_BRIDGE, MESEG_BASE + 4);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100508 val = mestolenbase & 0xfffff000;
509 reg = (reg & ~0x000fffff) | (val >> 12);
Felix Held651f99f2019-12-30 16:28:48 +0100510 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", MESEG_BASE + 4, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100511 pci_write_config32(HOST_BRIDGE, MESEG_BASE + 4, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100512
Angel Pons7c49cb82020-03-16 23:17:32 +0100513 /* ME mask */
Angel Ponsb31d1d72020-01-10 01:35:09 +0100514 reg = pci_read_config32(HOST_BRIDGE, MESEG_MASK);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100515 val = (0x80000 - me_uma_size) & 0xfff;
516 reg = (reg & ~0xfff00000) | (val << 20);
Angel Pons7c49cb82020-03-16 23:17:32 +0100517 reg = reg | ME_STLEN_EN; /* Set ME memory enable */
518 reg = reg | MELCK; /* Set lock bit on ME mem */
Felix Held651f99f2019-12-30 16:28:48 +0100519 printk(BIOS_DEBUG, "PCI(0, 0, 0)[%x] = %x\n", MESEG_MASK, reg);
Angel Ponsb31d1d72020-01-10 01:35:09 +0100520 pci_write_config32(HOST_BRIDGE, MESEG_MASK, reg);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100521 }
522}
523
Angel Pons88521882020-01-05 20:21:20 +0100524static void write_reset(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100525{
526 int channel, slotrank;
527
Angel Pons7c49cb82020-03-16 23:17:32 +0100528 /* Choose a populated channel */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100529 channel = (ctrl->rankmap[0]) ? 0 : 1;
530
Angel Pons88521882020-01-05 20:21:20 +0100531 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100532
Angel Pons7c49cb82020-03-16 23:17:32 +0100533 /* Choose a populated rank */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100534 slotrank = (ctrl->rankmap[channel] & 1) ? 0 : 2;
535
Angel Ponsffd50152020-11-12 11:03:10 +0100536 iosav_write_zqcs_sequence(channel, slotrank, 3, 8, 0);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100537
Angel Pons7c49cb82020-03-16 23:17:32 +0100538 /*
539 * Execute command queue - why is bit 22 set here?!
540 *
541 * This is actually using the IOSAV state machine as a timer, so refresh is allowed.
542 */
Angel Pons38d901e2020-05-02 23:50:43 +0200543 iosav_run_queue(channel, 1, 1);
Felix Held9cf1dd22018-07-31 14:52:40 +0200544
Angel Pons88521882020-01-05 20:21:20 +0100545 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100546}
547
Angel Pons88521882020-01-05 20:21:20 +0100548void dram_jedecreset(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100549{
Felix Held9fe248f2018-07-31 20:59:45 +0200550 u32 reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100551 int channel;
552
Angel Pons7c49cb82020-03-16 23:17:32 +0100553 while (!(MCHBAR32(RCOMP_TIMER) & (1 << 16)))
554 ;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100555 do {
Angel Pons88521882020-01-05 20:21:20 +0100556 reg = MCHBAR32(IOSAV_STATUS_ch(0));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100557 } while ((reg & 0x14) == 0);
558
Angel Pons7c49cb82020-03-16 23:17:32 +0100559 /* Set state of memory controller */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100560 reg = 0x112;
Angel Pons88521882020-01-05 20:21:20 +0100561 MCHBAR32(MC_INIT_STATE_G) = reg;
562 MCHBAR32(MC_INIT_STATE) = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100563 reg |= 2; /* DDR reset */
Angel Pons88521882020-01-05 20:21:20 +0100564 MCHBAR32(MC_INIT_STATE_G) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100565
Angel Pons7c49cb82020-03-16 23:17:32 +0100566 /* Assert DIMM reset signal */
Angel Ponsdc5539f2020-11-12 12:44:25 +0100567 MCHBAR32_AND(MC_INIT_STATE_G, ~(1 << 1));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100568
Angel Pons7c49cb82020-03-16 23:17:32 +0100569 /* Wait 200us */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100570 udelay(200);
571
Angel Pons7c49cb82020-03-16 23:17:32 +0100572 /* Deassert DIMM reset signal */
Angel Ponsdc5539f2020-11-12 12:44:25 +0100573 MCHBAR32_OR(MC_INIT_STATE_G, 1 << 1);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100574
Angel Pons7c49cb82020-03-16 23:17:32 +0100575 /* Wait 500us */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100576 udelay(500);
577
Angel Pons7c49cb82020-03-16 23:17:32 +0100578 /* Enable DCLK */
Angel Ponsdc5539f2020-11-12 12:44:25 +0100579 MCHBAR32_OR(MC_INIT_STATE_G, 1 << 2);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100580
Angel Pons7c49cb82020-03-16 23:17:32 +0100581 /* XXX Wait 20ns */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100582 udelay(1);
583
584 FOR_ALL_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +0100585 /* Set valid rank CKE */
Felix Held9fe248f2018-07-31 20:59:45 +0200586 reg = ctrl->rankmap[channel];
Angel Pons88521882020-01-05 20:21:20 +0100587 MCHBAR32(MC_INIT_STATE_ch(channel)) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100588
Angel Pons7c49cb82020-03-16 23:17:32 +0100589 /* Wait 10ns for ranks to settle */
590 // udelay(0.01);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100591
592 reg = (reg & ~0xf0) | (ctrl->rankmap[channel] << 4);
Angel Pons88521882020-01-05 20:21:20 +0100593 MCHBAR32(MC_INIT_STATE_ch(channel)) = reg;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100594
Angel Pons7c49cb82020-03-16 23:17:32 +0100595 /* Write reset using a NOP */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100596 write_reset(ctrl);
597 }
598}
599
600static odtmap get_ODT(ramctr_timing *ctrl, u8 rank, int channel)
601{
Angel Pons7c49cb82020-03-16 23:17:32 +0100602 /* Get ODT based on rankmap */
603 int dimms_per_ch = (ctrl->rankmap[channel] & 1) + ((ctrl->rankmap[channel] >> 2) & 1);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100604
605 if (dimms_per_ch == 1) {
Angel Pons7c49cb82020-03-16 23:17:32 +0100606 return (const odtmap){60, 60};
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100607 } else {
608 return (const odtmap){120, 30};
609 }
610}
611
Angel Pons7c49cb82020-03-16 23:17:32 +0100612static void write_mrreg(ramctr_timing *ctrl, int channel, int slotrank, int reg, u32 val)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100613{
Angel Pons88521882020-01-05 20:21:20 +0100614 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100615
616 if (ctrl->rank_mirror[channel][slotrank]) {
617 /* DDR3 Rank1 Address mirror
Angel Pons7c49cb82020-03-16 23:17:32 +0100618 swap the following pins:
619 A3<->A4, A5<->A6, A7<->A8, BA0<->BA1 */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100620 reg = ((reg >> 1) & 1) | ((reg << 1) & 2);
Angel Pons7c49cb82020-03-16 23:17:32 +0100621 val = (val & ~0x1f8) | ((val >> 1) & 0xa8) | ((val & 0xa8) << 1);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100622 }
623
Angel Pons8f0757e2020-11-11 23:03:36 +0100624 const struct iosav_ssq sequence[] = {
625 /* DRAM command MRS */
626 [0] = {
Angel Pons3abd2062020-05-03 00:25:02 +0200627 .sp_cmd_ctrl = {
628 .command = IOSAV_MRS,
629 },
630 .subseq_ctrl = {
631 .cmd_executions = 1,
632 .cmd_delay_gap = 4,
633 .post_ssq_wait = 4,
634 .data_direction = SSQ_NA,
635 },
636 .sp_cmd_addr = {
637 .address = val,
638 .rowbits = 6,
639 .bank = reg,
640 .rank = slotrank,
641 },
Angel Pons8f0757e2020-11-11 23:03:36 +0100642 },
643 /* DRAM command MRS */
644 [1] = {
Angel Pons3abd2062020-05-03 00:25:02 +0200645 .sp_cmd_ctrl = {
646 .command = IOSAV_MRS,
647 .ranksel_ap = 1,
648 },
649 .subseq_ctrl = {
650 .cmd_executions = 1,
651 .cmd_delay_gap = 4,
652 .post_ssq_wait = 4,
653 .data_direction = SSQ_NA,
654 },
655 .sp_cmd_addr = {
656 .address = val,
657 .rowbits = 6,
658 .bank = reg,
659 .rank = slotrank,
660 },
Angel Pons8f0757e2020-11-11 23:03:36 +0100661 },
662 /* DRAM command MRS */
663 [2] = {
Angel Pons3abd2062020-05-03 00:25:02 +0200664 .sp_cmd_ctrl = {
665 .command = IOSAV_MRS,
666 },
667 .subseq_ctrl = {
668 .cmd_executions = 1,
669 .cmd_delay_gap = 4,
670 .post_ssq_wait = ctrl->tMOD,
671 .data_direction = SSQ_NA,
672 },
673 .sp_cmd_addr = {
674 .address = val,
675 .rowbits = 6,
676 .bank = reg,
677 .rank = slotrank,
678 },
Angel Pons8f0757e2020-11-11 23:03:36 +0100679 },
680 };
681 iosav_write_sequence(channel, sequence, ARRAY_SIZE(sequence));
Felix Held9cf1dd22018-07-31 14:52:40 +0200682
Angel Pons7c49cb82020-03-16 23:17:32 +0100683 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +0200684 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100685}
686
Angel Pons88521882020-01-05 20:21:20 +0100687static u32 make_mr0(ramctr_timing *ctrl, u8 rank)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100688{
689 u16 mr0reg, mch_cas, mch_wr;
690 static const u8 mch_wr_t[12] = { 1, 2, 3, 4, 0, 5, 0, 6, 0, 7, 0, 0 };
Patrick Rudolph74203de2017-11-20 11:57:01 +0100691 const size_t is_mobile = get_platform_type() == PLATFORM_MOBILE;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100692
Angel Pons7c49cb82020-03-16 23:17:32 +0100693 /* Convert CAS to MCH register friendly */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100694 if (ctrl->CAS < 12) {
695 mch_cas = (u16) ((ctrl->CAS - 4) << 1);
696 } else {
697 mch_cas = (u16) (ctrl->CAS - 12);
698 mch_cas = ((mch_cas << 1) | 0x1);
699 }
700
Angel Pons7c49cb82020-03-16 23:17:32 +0100701 /* Convert tWR to MCH register friendly */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100702 mch_wr = mch_wr_t[ctrl->tWR - 5];
703
Angel Pons2bf28ed2020-11-12 13:49:59 +0100704 /* DLL Reset - self clearing - set after CLK frequency has been changed */
705 mr0reg = 1 << 8;
706
707 mr0reg |= (mch_cas & 0x1) << 2;
708 mr0reg |= (mch_cas & 0xe) << 3;
709 mr0reg |= mch_wr << 9;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100710
Angel Pons7c49cb82020-03-16 23:17:32 +0100711 /* Precharge PD - Fast (desktop) 1 or slow (mobile) 0 - mostly power-saving feature */
Angel Pons2bf28ed2020-11-12 13:49:59 +0100712 mr0reg |= !is_mobile << 12;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100713 return mr0reg;
714}
715
716static void dram_mr0(ramctr_timing *ctrl, u8 rank, int channel)
717{
Felix Held2bb3cdf2018-07-28 00:23:59 +0200718 write_mrreg(ctrl, channel, rank, 0, make_mr0(ctrl, rank));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100719}
720
721static u32 encode_odt(u32 odt)
722{
723 switch (odt) {
724 case 30:
725 return (1 << 9) | (1 << 2); // RZQ/8, RZQ/4
726 case 60:
727 return (1 << 2); // RZQ/4
728 case 120:
729 return (1 << 6); // RZQ/2
730 default:
731 case 0:
732 return 0;
733 }
734}
735
736static u32 make_mr1(ramctr_timing *ctrl, u8 rank, int channel)
737{
738 odtmap odt;
739 u32 mr1reg;
740
741 odt = get_ODT(ctrl, rank, channel);
Angel Pons7c49cb82020-03-16 23:17:32 +0100742 mr1reg = 2;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100743
744 mr1reg |= encode_odt(odt.rttnom);
745
746 return mr1reg;
747}
748
749static void dram_mr1(ramctr_timing *ctrl, u8 rank, int channel)
750{
751 u16 mr1reg;
752
753 mr1reg = make_mr1(ctrl, rank, channel);
754
755 write_mrreg(ctrl, channel, rank, 1, mr1reg);
756}
757
758static void dram_mr2(ramctr_timing *ctrl, u8 rank, int channel)
759{
760 u16 pasr, cwl, mr2reg;
761 odtmap odt;
762 int srt;
763
764 pasr = 0;
765 cwl = ctrl->CWL - 5;
766 odt = get_ODT(ctrl, rank, channel);
767
768 srt = ctrl->extended_temperature_range && !ctrl->auto_self_refresh;
769
770 mr2reg = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100771 mr2reg = (mr2reg & ~0x07) | pasr;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100772 mr2reg = (mr2reg & ~0x38) | (cwl << 3);
773 mr2reg = (mr2reg & ~0x40) | (ctrl->auto_self_refresh << 6);
774 mr2reg = (mr2reg & ~0x80) | (srt << 7);
775 mr2reg |= (odt.rttwr / 60) << 9;
776
777 write_mrreg(ctrl, channel, rank, 2, mr2reg);
778}
779
780static void dram_mr3(ramctr_timing *ctrl, u8 rank, int channel)
781{
782 write_mrreg(ctrl, channel, rank, 3, 0);
783}
784
Angel Pons88521882020-01-05 20:21:20 +0100785void dram_mrscommands(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100786{
787 u8 slotrank;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100788 int channel;
789
790 FOR_ALL_POPULATED_CHANNELS {
791 FOR_ALL_POPULATED_RANKS {
Angel Pons7c49cb82020-03-16 23:17:32 +0100792 /* MR2 */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100793 dram_mr2(ctrl, slotrank, channel);
794
Angel Pons7c49cb82020-03-16 23:17:32 +0100795 /* MR3 */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100796 dram_mr3(ctrl, slotrank, channel);
797
Angel Pons7c49cb82020-03-16 23:17:32 +0100798 /* MR1 */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100799 dram_mr1(ctrl, slotrank, channel);
800
Angel Pons7c49cb82020-03-16 23:17:32 +0100801 /* MR0 */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100802 dram_mr0(ctrl, slotrank, channel);
803 }
804 }
805
Angel Pons8f0757e2020-11-11 23:03:36 +0100806 const struct iosav_ssq zqcl_sequence[] = {
807 /* DRAM command NOP (without ODT nor chip selects) */
808 [0] = {
Angel Pons3abd2062020-05-03 00:25:02 +0200809 .sp_cmd_ctrl = {
810 .command = IOSAV_NOP & ~(0xff << 8),
811 },
812 .subseq_ctrl = {
813 .cmd_executions = 1,
814 .cmd_delay_gap = 4,
815 .post_ssq_wait = 15,
816 .data_direction = SSQ_NA,
817 },
818 .sp_cmd_addr = {
819 .address = 2,
820 .rowbits = 6,
821 .bank = 0,
822 .rank = 0,
823 },
Angel Pons8f0757e2020-11-11 23:03:36 +0100824 },
825 /* DRAM command ZQCL */
826 [1] = {
Angel Pons3abd2062020-05-03 00:25:02 +0200827 .sp_cmd_ctrl = {
828 .command = IOSAV_ZQCS,
829 .ranksel_ap = 1,
830 },
831 .subseq_ctrl = {
832 .cmd_executions = 1,
833 .cmd_delay_gap = 4,
834 .post_ssq_wait = 400,
835 .data_direction = SSQ_NA,
836 },
837 .sp_cmd_addr = {
838 .address = 1024,
839 .rowbits = 6,
840 .bank = 0,
841 .rank = 0,
842 },
843 .addr_update = {
844 .inc_rank = 1,
845 .addr_wrap = 20,
846 },
Angel Pons8f0757e2020-11-11 23:03:36 +0100847 },
848 };
849 iosav_write_sequence(BROADCAST_CH, zqcl_sequence, ARRAY_SIZE(zqcl_sequence));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100850
Angel Pons7c49cb82020-03-16 23:17:32 +0100851 /* Execute command queue on all channels. Do it four times. */
Angel Pons38d901e2020-05-02 23:50:43 +0200852 iosav_run_queue(BROADCAST_CH, 4, 0);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100853
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100854 FOR_ALL_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +0100855 /* Wait for ref drained */
Angel Pons88521882020-01-05 20:21:20 +0100856 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100857 }
858
Angel Pons7c49cb82020-03-16 23:17:32 +0100859 /* Refresh enable */
Angel Ponsdc5539f2020-11-12 12:44:25 +0100860 MCHBAR32_OR(MC_INIT_STATE_G, 1 << 3);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100861
862 FOR_ALL_POPULATED_CHANNELS {
Angel Ponsdc5539f2020-11-12 12:44:25 +0100863 MCHBAR32_AND(SCHED_CBIT_ch(channel), ~(1 << 21));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100864
Angel Pons88521882020-01-05 20:21:20 +0100865 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100866
867 slotrank = (ctrl->rankmap[channel] & 1) ? 0 : 2;
868
Angel Pons7c49cb82020-03-16 23:17:32 +0100869 /* Drain */
Angel Pons88521882020-01-05 20:21:20 +0100870 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100871
Angel Ponsffd50152020-11-12 11:03:10 +0100872 iosav_write_zqcs_sequence(channel, slotrank, 4, 101, 31);
Felix Held9cf1dd22018-07-31 14:52:40 +0200873
Angel Pons7c49cb82020-03-16 23:17:32 +0100874 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +0200875 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100876
Angel Pons7c49cb82020-03-16 23:17:32 +0100877 /* Drain */
Angel Pons88521882020-01-05 20:21:20 +0100878 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100879 }
880}
881
Felix Held3b906032020-01-14 17:05:43 +0100882static const u32 lane_base[] = {
883 LANEBASE_B0, LANEBASE_B1, LANEBASE_B2, LANEBASE_B3,
884 LANEBASE_B4, LANEBASE_B5, LANEBASE_B6, LANEBASE_B7,
885 LANEBASE_ECC
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100886};
887
Angel Pons88521882020-01-05 20:21:20 +0100888void program_timings(ramctr_timing *ctrl, int channel)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100889{
Angel Pons88521882020-01-05 20:21:20 +0100890 u32 reg32, reg_roundtrip_latency, reg_pi_code, reg_logic_delay, reg_io_latency;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100891 int lane;
892 int slotrank, slot;
893 int full_shift = 0;
Angel Pons88521882020-01-05 20:21:20 +0100894 u16 pi_coding_ctrl[NUM_SLOTS];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100895
896 FOR_ALL_POPULATED_RANKS {
Angel Pons88521882020-01-05 20:21:20 +0100897 if (full_shift < -ctrl->timings[channel][slotrank].pi_coding)
898 full_shift = -ctrl->timings[channel][slotrank].pi_coding;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100899 }
900
901 for (slot = 0; slot < NUM_SLOTS; slot++)
902 switch ((ctrl->rankmap[channel] >> (2 * slot)) & 3) {
903 case 0:
904 default:
Angel Pons88521882020-01-05 20:21:20 +0100905 pi_coding_ctrl[slot] = 0x7f;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100906 break;
907 case 1:
Angel Pons88521882020-01-05 20:21:20 +0100908 pi_coding_ctrl[slot] =
Angel Pons7c49cb82020-03-16 23:17:32 +0100909 ctrl->timings[channel][2 * slot + 0].pi_coding + full_shift;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100910 break;
911 case 2:
Angel Pons88521882020-01-05 20:21:20 +0100912 pi_coding_ctrl[slot] =
Angel Pons7c49cb82020-03-16 23:17:32 +0100913 ctrl->timings[channel][2 * slot + 1].pi_coding + full_shift;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100914 break;
915 case 3:
Angel Pons88521882020-01-05 20:21:20 +0100916 pi_coding_ctrl[slot] =
917 (ctrl->timings[channel][2 * slot].pi_coding +
Angel Pons7c49cb82020-03-16 23:17:32 +0100918 ctrl->timings[channel][2 * slot + 1].pi_coding) / 2 + full_shift;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100919 break;
920 }
921
Angel Pons7c49cb82020-03-16 23:17:32 +0100922 /* Enable CMD XOVER */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100923 reg32 = get_XOVER_CMD(ctrl->rankmap[channel]);
Angel Pons7c49cb82020-03-16 23:17:32 +0100924 reg32 |= (pi_coding_ctrl[0] & 0x3f) << 6;
925 reg32 |= (pi_coding_ctrl[0] & 0x40) << 9;
Angel Pons88521882020-01-05 20:21:20 +0100926 reg32 |= (pi_coding_ctrl[1] & 0x7f) << 18;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100927 reg32 |= (full_shift & 0x3f) | ((full_shift & 0x40) << 6);
928
Angel Pons88521882020-01-05 20:21:20 +0100929 MCHBAR32(GDCRCMDPICODING_ch(channel)) = reg32;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100930
Angel Pons7c49cb82020-03-16 23:17:32 +0100931 /* Enable CLK XOVER */
Angel Pons88521882020-01-05 20:21:20 +0100932 reg_pi_code = get_XOVER_CLK(ctrl->rankmap[channel]);
933 reg_logic_delay = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100934
935 FOR_ALL_POPULATED_RANKS {
Angel Pons7c49cb82020-03-16 23:17:32 +0100936 int shift = ctrl->timings[channel][slotrank].pi_coding + full_shift;
Angel Pons88521882020-01-05 20:21:20 +0100937 int offset_pi_code;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100938 if (shift < 0)
939 shift = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100940
Angel Pons88521882020-01-05 20:21:20 +0100941 offset_pi_code = ctrl->pi_code_offset + shift;
Angel Pons7c49cb82020-03-16 23:17:32 +0100942
943 /* Set CLK phase shift */
Angel Pons88521882020-01-05 20:21:20 +0100944 reg_pi_code |= (offset_pi_code & 0x3f) << (6 * slotrank);
945 reg_logic_delay |= ((offset_pi_code >> 6) & 1) << slotrank;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100946 }
947
Angel Pons88521882020-01-05 20:21:20 +0100948 MCHBAR32(GDCRCKPICODE_ch(channel)) = reg_pi_code;
949 MCHBAR32(GDCRCKLOGICDELAY_ch(channel)) = reg_logic_delay;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100950
Angel Pons88521882020-01-05 20:21:20 +0100951 reg_io_latency = MCHBAR32(SC_IO_LATENCY_ch(channel));
Angel Ponsdc5539f2020-11-12 12:44:25 +0100952 reg_io_latency &= ~0xffff;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100953
Angel Pons88521882020-01-05 20:21:20 +0100954 reg_roundtrip_latency = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100955
956 FOR_ALL_POPULATED_RANKS {
Angel Pons7c49cb82020-03-16 23:17:32 +0100957 int post_timA_min_high = 7, pre_timA_min_high = 7;
958 int post_timA_max_high = 0, pre_timA_max_high = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100959 int shift_402x = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +0100960 int shift = ctrl->timings[channel][slotrank].pi_coding + full_shift;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100961
962 if (shift < 0)
963 shift = 0;
964
965 FOR_ALL_LANES {
Arthur Heymansabc504f2017-05-15 09:36:44 +0200966 post_timA_min_high = MIN(post_timA_min_high,
967 (ctrl->timings[channel][slotrank].lanes[lane].
968 timA + shift) >> 6);
969 pre_timA_min_high = MIN(pre_timA_min_high,
970 ctrl->timings[channel][slotrank].lanes[lane].
971 timA >> 6);
972 post_timA_max_high = MAX(post_timA_max_high,
973 (ctrl->timings[channel][slotrank].lanes[lane].
974 timA + shift) >> 6);
975 pre_timA_max_high = MAX(pre_timA_max_high,
976 ctrl->timings[channel][slotrank].lanes[lane].
977 timA >> 6);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100978 }
979
980 if (pre_timA_max_high - pre_timA_min_high <
981 post_timA_max_high - post_timA_min_high)
982 shift_402x = +1;
Angel Pons7c49cb82020-03-16 23:17:32 +0100983
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100984 else if (pre_timA_max_high - pre_timA_min_high >
985 post_timA_max_high - post_timA_min_high)
986 shift_402x = -1;
987
Felix Helddee167e2019-12-30 17:30:16 +0100988 reg_io_latency |=
Felix Heldef4fe3e2019-12-31 14:15:05 +0100989 (ctrl->timings[channel][slotrank].io_latency + shift_402x -
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100990 post_timA_min_high) << (4 * slotrank);
Angel Pons7c49cb82020-03-16 23:17:32 +0100991
Angel Pons88521882020-01-05 20:21:20 +0100992 reg_roundtrip_latency |=
993 (ctrl->timings[channel][slotrank].roundtrip_latency +
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100994 shift_402x) << (8 * slotrank);
995
996 FOR_ALL_LANES {
Felix Heldfb19c8a2020-01-14 21:27:59 +0100997 MCHBAR32(lane_base[lane] + GDCRRX(channel, slotrank)) =
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +0100998 (((ctrl->timings[channel][slotrank].lanes[lane].
999 timA + shift) & 0x3f)
1000 |
1001 ((ctrl->timings[channel][slotrank].lanes[lane].
1002 rising + shift) << 8)
1003 |
1004 (((ctrl->timings[channel][slotrank].lanes[lane].
1005 timA + shift -
1006 (post_timA_min_high << 6)) & 0x1c0) << 10)
1007 | ((ctrl->timings[channel][slotrank].lanes[lane].
1008 falling + shift) << 20));
1009
Felix Heldfb19c8a2020-01-14 21:27:59 +01001010 MCHBAR32(lane_base[lane] + GDCRTX(channel, slotrank)) =
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001011 (((ctrl->timings[channel][slotrank].lanes[lane].
1012 timC + shift) & 0x3f)
1013 |
1014 (((ctrl->timings[channel][slotrank].lanes[lane].
1015 timB + shift) & 0x3f) << 8)
1016 |
1017 (((ctrl->timings[channel][slotrank].lanes[lane].
1018 timB + shift) & 0x1c0) << 9)
1019 |
1020 (((ctrl->timings[channel][slotrank].lanes[lane].
1021 timC + shift) & 0x40) << 13));
1022 }
1023 }
Angel Pons88521882020-01-05 20:21:20 +01001024 MCHBAR32(SC_ROUNDT_LAT_ch(channel)) = reg_roundtrip_latency;
1025 MCHBAR32(SC_IO_LATENCY_ch(channel)) = reg_io_latency;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001026}
1027
Angel Pons88521882020-01-05 20:21:20 +01001028static void test_timA(ramctr_timing *ctrl, int channel, int slotrank)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001029{
Angel Pons88521882020-01-05 20:21:20 +01001030 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001031
Angel Ponsffd50152020-11-12 11:03:10 +01001032 iosav_write_read_mpr_sequence(channel, slotrank, ctrl->tMOD, 1, 3, 15, ctrl->CAS + 36);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001033
Angel Pons7c49cb82020-03-16 23:17:32 +01001034 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001035 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001036
Angel Pons88521882020-01-05 20:21:20 +01001037 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001038}
1039
Angel Pons7c49cb82020-03-16 23:17:32 +01001040static int does_lane_work(ramctr_timing *ctrl, int channel, int slotrank, int lane)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001041{
1042 u32 timA = ctrl->timings[channel][slotrank].lanes[lane].timA;
Angel Pons7c49cb82020-03-16 23:17:32 +01001043
1044 return (MCHBAR32(lane_base[lane] +
1045 GDCRTRAININGRESULT(channel, (timA / 32) & 1)) >> (timA % 32)) & 1;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001046}
1047
1048struct run {
1049 int middle;
1050 int end;
1051 int start;
1052 int all;
1053 int length;
1054};
1055
1056static struct run get_longest_zero_run(int *seq, int sz)
1057{
1058 int i, ls;
1059 int bl = 0, bs = 0;
1060 struct run ret;
1061
1062 ls = 0;
1063 for (i = 0; i < 2 * sz; i++)
1064 if (seq[i % sz]) {
1065 if (i - ls > bl) {
1066 bl = i - ls;
1067 bs = ls;
1068 }
1069 ls = i + 1;
1070 }
1071 if (bl == 0) {
1072 ret.middle = sz / 2;
Angel Pons7c49cb82020-03-16 23:17:32 +01001073 ret.start = 0;
1074 ret.end = sz;
Jacob Garbere0c181d2019-04-08 22:21:43 -06001075 ret.length = sz;
Angel Pons7c49cb82020-03-16 23:17:32 +01001076 ret.all = 1;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001077 return ret;
1078 }
1079
Angel Pons7c49cb82020-03-16 23:17:32 +01001080 ret.start = bs % sz;
1081 ret.end = (bs + bl - 1) % sz;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001082 ret.middle = (bs + (bl - 1) / 2) % sz;
1083 ret.length = bl;
Angel Pons7c49cb82020-03-16 23:17:32 +01001084 ret.all = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001085
1086 return ret;
1087}
1088
Angel Pons7c49cb82020-03-16 23:17:32 +01001089static void discover_timA_coarse(ramctr_timing *ctrl, int channel, int slotrank, int *upperA)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001090{
1091 int timA;
1092 int statistics[NUM_LANES][128];
1093 int lane;
1094
1095 for (timA = 0; timA < 128; timA++) {
1096 FOR_ALL_LANES {
1097 ctrl->timings[channel][slotrank].lanes[lane].timA = timA;
1098 }
1099 program_timings(ctrl, channel);
1100
1101 test_timA(ctrl, channel, slotrank);
1102
1103 FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01001104 statistics[lane][timA] = !does_lane_work(ctrl, channel, slotrank, lane);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001105 }
1106 }
1107 FOR_ALL_LANES {
1108 struct run rn = get_longest_zero_run(statistics[lane], 128);
1109 ctrl->timings[channel][slotrank].lanes[lane].timA = rn.middle;
1110 upperA[lane] = rn.end;
1111 if (upperA[lane] < rn.middle)
1112 upperA[lane] += 128;
Angel Pons7c49cb82020-03-16 23:17:32 +01001113
Patrick Rudolph368b6152016-11-25 16:36:52 +01001114 printram("timA: %d, %d, %d: 0x%02x-0x%02x-0x%02x\n",
Felix Held2bb3cdf2018-07-28 00:23:59 +02001115 channel, slotrank, lane, rn.start, rn.middle, rn.end);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001116 }
1117}
1118
Angel Pons7c49cb82020-03-16 23:17:32 +01001119static void discover_timA_fine(ramctr_timing *ctrl, int channel, int slotrank, int *upperA)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001120{
1121 int timA_delta;
1122 int statistics[NUM_LANES][51];
1123 int lane, i;
1124
1125 memset(statistics, 0, sizeof(statistics));
1126
1127 for (timA_delta = -25; timA_delta <= 25; timA_delta++) {
Angel Pons7c49cb82020-03-16 23:17:32 +01001128
1129 FOR_ALL_LANES {
1130 ctrl->timings[channel][slotrank].lanes[lane].timA
1131 = upperA[lane] + timA_delta + 0x40;
1132 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001133 program_timings(ctrl, channel);
1134
1135 for (i = 0; i < 100; i++) {
1136 test_timA(ctrl, channel, slotrank);
1137 FOR_ALL_LANES {
1138 statistics[lane][timA_delta + 25] +=
Angel Pons7c49cb82020-03-16 23:17:32 +01001139 does_lane_work(ctrl, channel, slotrank, lane);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001140 }
1141 }
1142 }
1143 FOR_ALL_LANES {
1144 int last_zero, first_all;
1145
1146 for (last_zero = -25; last_zero <= 25; last_zero++)
1147 if (statistics[lane][last_zero + 25])
1148 break;
Angel Pons7c49cb82020-03-16 23:17:32 +01001149
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001150 last_zero--;
1151 for (first_all = -25; first_all <= 25; first_all++)
1152 if (statistics[lane][first_all + 25] == 100)
1153 break;
1154
Angel Pons7c49cb82020-03-16 23:17:32 +01001155 printram("lane %d: %d, %d\n", lane, last_zero, first_all);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001156
1157 ctrl->timings[channel][slotrank].lanes[lane].timA =
Angel Pons7c49cb82020-03-16 23:17:32 +01001158 (last_zero + first_all) / 2 + upperA[lane];
1159
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001160 printram("Aval: %d, %d, %d: %x\n", channel, slotrank,
Angel Pons7c49cb82020-03-16 23:17:32 +01001161 lane, ctrl->timings[channel][slotrank].lanes[lane].timA);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001162 }
1163}
1164
Angel Pons891f2bc2020-01-10 01:27:28 +01001165static int discover_402x(ramctr_timing *ctrl, int channel, int slotrank, int *upperA)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001166{
1167 int works[NUM_LANES];
1168 int lane;
Angel Pons7c49cb82020-03-16 23:17:32 +01001169
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001170 while (1) {
1171 int all_works = 1, some_works = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +01001172
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001173 program_timings(ctrl, channel);
1174 test_timA(ctrl, channel, slotrank);
Angel Pons7c49cb82020-03-16 23:17:32 +01001175
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001176 FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01001177 works[lane] = !does_lane_work(ctrl, channel, slotrank, lane);
1178
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001179 if (works[lane])
1180 some_works = 1;
1181 else
1182 all_works = 0;
1183 }
1184 if (all_works)
1185 return 0;
Angel Pons7c49cb82020-03-16 23:17:32 +01001186
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001187 if (!some_works) {
Angel Pons88521882020-01-05 20:21:20 +01001188 if (ctrl->timings[channel][slotrank].roundtrip_latency < 2) {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001189 printk(BIOS_EMERG, "402x discovery failed (1): %d, %d\n",
1190 channel, slotrank);
1191 return MAKE_ERR;
1192 }
Angel Pons88521882020-01-05 20:21:20 +01001193 ctrl->timings[channel][slotrank].roundtrip_latency -= 2;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001194 printram("4024 -= 2;\n");
1195 continue;
1196 }
Felix Heldef4fe3e2019-12-31 14:15:05 +01001197 ctrl->timings[channel][slotrank].io_latency += 2;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001198 printram("4028 += 2;\n");
Angel Pons7c49cb82020-03-16 23:17:32 +01001199
Felix Heldef4fe3e2019-12-31 14:15:05 +01001200 if (ctrl->timings[channel][slotrank].io_latency >= 0x10) {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001201 printk(BIOS_EMERG, "402x discovery failed (2): %d, %d\n",
1202 channel, slotrank);
1203 return MAKE_ERR;
1204 }
1205 FOR_ALL_LANES if (works[lane]) {
Angel Pons891f2bc2020-01-10 01:27:28 +01001206 ctrl->timings[channel][slotrank].lanes[lane].timA += 128;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001207 upperA[lane] += 128;
Angel Pons891f2bc2020-01-10 01:27:28 +01001208 printram("increment %d, %d, %d\n", channel, slotrank, lane);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001209 }
1210 }
1211 return 0;
1212}
1213
1214struct timA_minmax {
1215 int timA_min_high, timA_max_high;
1216};
1217
Angel Pons88521882020-01-05 20:21:20 +01001218static void pre_timA_change(ramctr_timing *ctrl, int channel, int slotrank,
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001219 struct timA_minmax *mnmx)
1220{
1221 int lane;
1222 mnmx->timA_min_high = 7;
1223 mnmx->timA_max_high = 0;
1224
1225 FOR_ALL_LANES {
1226 if (mnmx->timA_min_high >
1227 (ctrl->timings[channel][slotrank].lanes[lane].timA >> 6))
1228 mnmx->timA_min_high =
Angel Pons891f2bc2020-01-10 01:27:28 +01001229 (ctrl->timings[channel][slotrank].lanes[lane].timA >> 6);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001230 if (mnmx->timA_max_high <
1231 (ctrl->timings[channel][slotrank].lanes[lane].timA >> 6))
1232 mnmx->timA_max_high =
Angel Pons891f2bc2020-01-10 01:27:28 +01001233 (ctrl->timings[channel][slotrank].lanes[lane].timA >> 6);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001234 }
1235}
1236
Angel Pons88521882020-01-05 20:21:20 +01001237static void post_timA_change(ramctr_timing *ctrl, int channel, int slotrank,
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001238 struct timA_minmax *mnmx)
1239{
1240 struct timA_minmax post;
1241 int shift_402x = 0;
1242
Angel Pons7c49cb82020-03-16 23:17:32 +01001243 /* Get changed maxima */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001244 pre_timA_change(ctrl, channel, slotrank, &post);
1245
1246 if (mnmx->timA_max_high - mnmx->timA_min_high <
1247 post.timA_max_high - post.timA_min_high)
1248 shift_402x = +1;
Angel Pons7c49cb82020-03-16 23:17:32 +01001249
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001250 else if (mnmx->timA_max_high - mnmx->timA_min_high >
1251 post.timA_max_high - post.timA_min_high)
1252 shift_402x = -1;
Angel Pons7c49cb82020-03-16 23:17:32 +01001253
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001254 else
1255 shift_402x = 0;
1256
Felix Heldef4fe3e2019-12-31 14:15:05 +01001257 ctrl->timings[channel][slotrank].io_latency += shift_402x;
Angel Pons88521882020-01-05 20:21:20 +01001258 ctrl->timings[channel][slotrank].roundtrip_latency += shift_402x;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001259 printram("4024 += %d;\n", shift_402x);
1260 printram("4028 += %d;\n", shift_402x);
1261}
1262
Angel Pons7c49cb82020-03-16 23:17:32 +01001263/*
1264 * Compensate the skew between DQS and DQs.
1265 *
Angel Pons891f2bc2020-01-10 01:27:28 +01001266 * To ease PCB design, a small skew between Data Strobe signals and Data Signals is allowed.
1267 * The controller has to measure and compensate this skew for every byte-lane. By delaying
Angel Pons7c49cb82020-03-16 23:17:32 +01001268 * either all DQ signals or DQS signal, a full phase shift can be introduced. It is assumed
Angel Pons891f2bc2020-01-10 01:27:28 +01001269 * that one byte-lane's DQs signals have the same routing delay.
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001270 *
Angel Pons891f2bc2020-01-10 01:27:28 +01001271 * To measure the actual skew, the DRAM is placed in "read leveling" mode. In read leveling
1272 * mode the DRAM-chip outputs an alternating periodic pattern. The memory controller iterates
1273 * over all possible values to do a full phase shift and issues read commands. With DQS and
Angel Pons7c49cb82020-03-16 23:17:32 +01001274 * DQ in phase the data being read is expected to alternate on every byte:
1275 *
Angel Pons891f2bc2020-01-10 01:27:28 +01001276 * 0xFF 0x00 0xFF ...
Angel Pons7c49cb82020-03-16 23:17:32 +01001277 *
Angel Pons891f2bc2020-01-10 01:27:28 +01001278 * Once the controller has detected this pattern a bit in the result register is set for the
1279 * current phase shift.
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001280 */
Angel Pons88521882020-01-05 20:21:20 +01001281int read_training(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001282{
1283 int channel, slotrank, lane;
1284 int err;
1285
1286 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS {
1287 int all_high, some_high;
1288 int upperA[NUM_LANES];
1289 struct timA_minmax mnmx;
1290
Angel Pons88521882020-01-05 20:21:20 +01001291 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001292
Angel Ponsffd50152020-11-12 11:03:10 +01001293 iosav_write_prea_sequence(channel, slotrank, ctrl->tRP, 0);
Felix Held9cf1dd22018-07-31 14:52:40 +02001294
Angel Pons7c49cb82020-03-16 23:17:32 +01001295 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001296 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001297
Angel Pons88521882020-01-05 20:21:20 +01001298 MCHBAR32(GDCRTRAININGMOD) = (slotrank << 2) | 0x8001;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001299
Felix Heldef4fe3e2019-12-31 14:15:05 +01001300 ctrl->timings[channel][slotrank].io_latency = 4;
Angel Pons88521882020-01-05 20:21:20 +01001301 ctrl->timings[channel][slotrank].roundtrip_latency = 55;
Felix Held2bb3cdf2018-07-28 00:23:59 +02001302 program_timings(ctrl, channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001303
Felix Held2bb3cdf2018-07-28 00:23:59 +02001304 discover_timA_coarse(ctrl, channel, slotrank, upperA);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001305
Felix Held2bb3cdf2018-07-28 00:23:59 +02001306 all_high = 1;
1307 some_high = 0;
1308 FOR_ALL_LANES {
Angel Pons891f2bc2020-01-10 01:27:28 +01001309 if (ctrl->timings[channel][slotrank].lanes[lane].timA >= 0x40)
Felix Held2bb3cdf2018-07-28 00:23:59 +02001310 some_high = 1;
1311 else
1312 all_high = 0;
1313 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001314
1315 if (all_high) {
Felix Heldef4fe3e2019-12-31 14:15:05 +01001316 ctrl->timings[channel][slotrank].io_latency--;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001317 printram("4028--;\n");
1318 FOR_ALL_LANES {
Angel Pons891f2bc2020-01-10 01:27:28 +01001319 ctrl->timings[channel][slotrank].lanes[lane].timA -= 0x40;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001320 upperA[lane] -= 0x40;
1321
1322 }
1323 } else if (some_high) {
Angel Pons88521882020-01-05 20:21:20 +01001324 ctrl->timings[channel][slotrank].roundtrip_latency++;
Felix Heldef4fe3e2019-12-31 14:15:05 +01001325 ctrl->timings[channel][slotrank].io_latency++;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001326 printram("4024++;\n");
1327 printram("4028++;\n");
1328 }
1329
1330 program_timings(ctrl, channel);
1331
1332 pre_timA_change(ctrl, channel, slotrank, &mnmx);
1333
1334 err = discover_402x(ctrl, channel, slotrank, upperA);
1335 if (err)
1336 return err;
1337
1338 post_timA_change(ctrl, channel, slotrank, &mnmx);
1339 pre_timA_change(ctrl, channel, slotrank, &mnmx);
1340
1341 discover_timA_fine(ctrl, channel, slotrank, upperA);
1342
1343 post_timA_change(ctrl, channel, slotrank, &mnmx);
1344 pre_timA_change(ctrl, channel, slotrank, &mnmx);
1345
1346 FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01001347 ctrl->timings[channel][slotrank].lanes[lane].timA -=
1348 mnmx.timA_min_high * 0x40;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001349 }
Felix Heldef4fe3e2019-12-31 14:15:05 +01001350 ctrl->timings[channel][slotrank].io_latency -= mnmx.timA_min_high;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001351 printram("4028 -= %d;\n", mnmx.timA_min_high);
1352
1353 post_timA_change(ctrl, channel, slotrank, &mnmx);
1354
1355 printram("4/8: %d, %d, %x, %x\n", channel, slotrank,
Angel Pons88521882020-01-05 20:21:20 +01001356 ctrl->timings[channel][slotrank].roundtrip_latency,
Felix Heldef4fe3e2019-12-31 14:15:05 +01001357 ctrl->timings[channel][slotrank].io_latency);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001358
1359 printram("final results:\n");
1360 FOR_ALL_LANES
Angel Pons7c49cb82020-03-16 23:17:32 +01001361 printram("Aval: %d, %d, %d: %x\n", channel, slotrank, lane,
Felix Held2bb3cdf2018-07-28 00:23:59 +02001362 ctrl->timings[channel][slotrank].lanes[lane].timA);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001363
Angel Pons88521882020-01-05 20:21:20 +01001364 MCHBAR32(GDCRTRAININGMOD) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001365
1366 toggle_io_reset();
1367 }
1368
1369 FOR_ALL_POPULATED_CHANNELS {
1370 program_timings(ctrl, channel);
1371 }
1372 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01001373 MCHBAR32(IOSAV_By_BW_MASK_ch(channel, lane)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001374 }
1375 return 0;
1376}
1377
Angel Pons88521882020-01-05 20:21:20 +01001378static void test_timC(ramctr_timing *ctrl, int channel, int slotrank)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001379{
1380 int lane;
1381
1382 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01001383 MCHBAR32(IOSAV_By_ERROR_COUNT_ch(channel, lane)) = 0;
1384 MCHBAR32(IOSAV_By_BW_SERROR_C_ch(channel, lane));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001385 }
1386
Angel Pons88521882020-01-05 20:21:20 +01001387 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001388
Angel Ponsffd50152020-11-12 11:03:10 +01001389 iosav_write_misc_write_sequence(ctrl, channel, slotrank,
1390 MAX(ctrl->tRRD, (ctrl->tFAW >> 2) + 1), 4, 4, 500, 18);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001391
Angel Pons7c49cb82020-03-16 23:17:32 +01001392 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001393 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001394
Angel Pons88521882020-01-05 20:21:20 +01001395 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001396
Angel Pons8f0757e2020-11-11 23:03:36 +01001397 const struct iosav_ssq rd_sequence[] = {
1398 /* DRAM command PREA */
1399 [0] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001400 .sp_cmd_ctrl = {
1401 .command = IOSAV_PRE,
1402 .ranksel_ap = 1,
1403 },
1404 .subseq_ctrl = {
1405 .cmd_executions = 1,
1406 .cmd_delay_gap = 3,
1407 .post_ssq_wait = ctrl->tRP,
1408 .data_direction = SSQ_NA,
1409 },
1410 .sp_cmd_addr = {
1411 .address = 1024,
1412 .rowbits = 6,
1413 .bank = 0,
1414 .rank = slotrank,
1415 },
1416 .addr_update = {
1417 .addr_wrap = 18,
1418 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001419 },
1420 /* DRAM command ACT */
1421 [1] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001422 .sp_cmd_ctrl = {
1423 .command = IOSAV_ACT,
1424 .ranksel_ap = 1,
1425 },
1426 .subseq_ctrl = {
1427 .cmd_executions = 8,
1428 .cmd_delay_gap = MAX(ctrl->tRRD, (ctrl->tFAW >> 2) + 1),
1429 .post_ssq_wait = ctrl->CAS,
1430 .data_direction = SSQ_NA,
1431 },
1432 .sp_cmd_addr = {
1433 .address = 0,
1434 .rowbits = 6,
1435 .bank = 0,
1436 .rank = slotrank,
1437 },
1438 .addr_update = {
1439 .inc_bank = 1,
1440 .addr_wrap = 18,
1441 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001442 },
1443 /* DRAM command RD */
1444 [2] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001445 .sp_cmd_ctrl = {
1446 .command = IOSAV_RD,
1447 .ranksel_ap = 1,
1448 },
1449 .subseq_ctrl = {
1450 .cmd_executions = 500,
1451 .cmd_delay_gap = 4,
1452 .post_ssq_wait = MAX(ctrl->tRTP, 8),
1453 .data_direction = SSQ_RD,
1454 },
1455 .sp_cmd_addr = {
1456 .address = 0,
1457 .rowbits = 0,
1458 .bank = 0,
1459 .rank = slotrank,
1460 },
1461 .addr_update = {
1462 .inc_addr_8 = 1,
1463 .addr_wrap = 18,
1464 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001465 },
1466 /* DRAM command PREA */
1467 [3] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001468 .sp_cmd_ctrl = {
1469 .command = IOSAV_PRE,
1470 .ranksel_ap = 1,
1471 },
1472 .subseq_ctrl = {
1473 .cmd_executions = 1,
1474 .cmd_delay_gap = 3,
1475 .post_ssq_wait = ctrl->tRP,
1476 .data_direction = SSQ_NA,
1477 },
1478 .sp_cmd_addr = {
1479 .address = 1024,
1480 .rowbits = 6,
1481 .bank = 0,
1482 .rank = slotrank,
1483 },
1484 .addr_update = {
1485 .addr_wrap = 18,
1486 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001487 },
1488 };
1489 iosav_write_sequence(channel, rd_sequence, ARRAY_SIZE(rd_sequence));
Felix Held9cf1dd22018-07-31 14:52:40 +02001490
Angel Pons7c49cb82020-03-16 23:17:32 +01001491 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001492 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02001493
Angel Pons88521882020-01-05 20:21:20 +01001494 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001495}
1496
Tobias Diedrich87c4f112017-12-07 22:40:20 +01001497static void timC_threshold_process(int *data, const int count)
1498{
1499 int min = data[0];
1500 int max = min;
1501 int i;
1502 for (i = 1; i < count; i++) {
1503 if (min > data[i])
1504 min = data[i];
Angel Pons7c49cb82020-03-16 23:17:32 +01001505
Tobias Diedrich87c4f112017-12-07 22:40:20 +01001506 if (max < data[i])
1507 max = data[i];
1508 }
Angel Pons7c49cb82020-03-16 23:17:32 +01001509 int threshold = min / 2 + max / 2;
Tobias Diedrich87c4f112017-12-07 22:40:20 +01001510 for (i = 0; i < count; i++)
1511 data[i] = data[i] > threshold;
Angel Pons7c49cb82020-03-16 23:17:32 +01001512
Angel Pons891f2bc2020-01-10 01:27:28 +01001513 printram("threshold=%d min=%d max=%d\n", threshold, min, max);
Tobias Diedrich87c4f112017-12-07 22:40:20 +01001514}
1515
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001516static int discover_timC(ramctr_timing *ctrl, int channel, int slotrank)
1517{
1518 int timC;
Angel Pons7c49cb82020-03-16 23:17:32 +01001519 int stats[NUM_LANES][MAX_TIMC + 1];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001520 int lane;
1521
Angel Pons88521882020-01-05 20:21:20 +01001522 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001523
Angel Ponsffd50152020-11-12 11:03:10 +01001524 iosav_write_prea_sequence(channel, slotrank, ctrl->tRP, 18);
Felix Held9cf1dd22018-07-31 14:52:40 +02001525
Angel Pons7c49cb82020-03-16 23:17:32 +01001526 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001527 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001528
1529 for (timC = 0; timC <= MAX_TIMC; timC++) {
Angel Pons891f2bc2020-01-10 01:27:28 +01001530 FOR_ALL_LANES ctrl->timings[channel][slotrank].lanes[lane].timC = timC;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001531 program_timings(ctrl, channel);
1532
1533 test_timC(ctrl, channel, slotrank);
1534
1535 FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01001536 stats[lane][timC] = MCHBAR32(IOSAV_By_ERROR_COUNT_ch(channel, lane));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001537 }
1538 }
1539 FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01001540 struct run rn = get_longest_zero_run(stats[lane], ARRAY_SIZE(stats[lane]));
1541
Tobias Diedrich87c4f112017-12-07 22:40:20 +01001542 if (rn.all || rn.length < 8) {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001543 printk(BIOS_EMERG, "timC discovery failed: %d, %d, %d\n",
1544 channel, slotrank, lane);
Angel Pons7c49cb82020-03-16 23:17:32 +01001545 /*
1546 * With command training not being done yet, the lane can be erroneous.
1547 * Take the average as reference and try again to find a run.
Tobias Diedrich87c4f112017-12-07 22:40:20 +01001548 */
Angel Pons7c49cb82020-03-16 23:17:32 +01001549 timC_threshold_process(stats[lane], ARRAY_SIZE(stats[lane]));
1550 rn = get_longest_zero_run(stats[lane], ARRAY_SIZE(stats[lane]));
1551
Tobias Diedrich87c4f112017-12-07 22:40:20 +01001552 if (rn.all || rn.length < 8) {
1553 printk(BIOS_EMERG, "timC recovery failed\n");
1554 return MAKE_ERR;
1555 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001556 }
Tobias Diedrich87c4f112017-12-07 22:40:20 +01001557 ctrl->timings[channel][slotrank].lanes[lane].timC = rn.middle;
Patrick Rudolph368b6152016-11-25 16:36:52 +01001558 printram("timC: %d, %d, %d: 0x%02x-0x%02x-0x%02x\n",
Felix Held2bb3cdf2018-07-28 00:23:59 +02001559 channel, slotrank, lane, rn.start, rn.middle, rn.end);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001560 }
1561 return 0;
1562}
1563
Angel Pons88521882020-01-05 20:21:20 +01001564static int get_precedening_channels(ramctr_timing *ctrl, int target_channel)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001565{
1566 int channel, ret = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +01001567
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001568 FOR_ALL_POPULATED_CHANNELS if (channel < target_channel)
1569 ret++;
Angel Pons7c49cb82020-03-16 23:17:32 +01001570
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001571 return ret;
1572}
1573
Angel Pons765d4652020-11-11 14:44:35 +01001574/* Each cacheline is 64 bits long */
1575static void program_wdb_pattern_length(int channel, const unsigned int num_cachelines)
1576{
1577 MCHBAR8(IOSAV_DATA_CTL_ch(channel)) = num_cachelines / 8 - 1;
1578}
1579
Angel Pons88521882020-01-05 20:21:20 +01001580static void fill_pattern0(ramctr_timing *ctrl, int channel, u32 a, u32 b)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001581{
Subrata Banikb1434fc2019-03-15 22:20:41 +05301582 unsigned int j;
Angel Pons891f2bc2020-01-10 01:27:28 +01001583 unsigned int channel_offset = get_precedening_channels(ctrl, channel) * 0x40;
Angel Pons7c49cb82020-03-16 23:17:32 +01001584
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001585 for (j = 0; j < 16; j++)
1586 write32((void *)(0x04000000 + channel_offset + 4 * j), j & 2 ? b : a);
Angel Pons7c49cb82020-03-16 23:17:32 +01001587
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001588 sfence();
Angel Pons765d4652020-11-11 14:44:35 +01001589
1590 program_wdb_pattern_length(channel, 8);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001591}
1592
Angel Pons88521882020-01-05 20:21:20 +01001593static int num_of_channels(const ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001594{
1595 int ret = 0;
1596 int channel;
1597 FOR_ALL_POPULATED_CHANNELS ret++;
1598 return ret;
1599}
1600
Angel Pons88521882020-01-05 20:21:20 +01001601static void fill_pattern1(ramctr_timing *ctrl, int channel)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001602{
Subrata Banikb1434fc2019-03-15 22:20:41 +05301603 unsigned int j;
Angel Pons891f2bc2020-01-10 01:27:28 +01001604 unsigned int channel_offset = get_precedening_channels(ctrl, channel) * 0x40;
Subrata Banikb1434fc2019-03-15 22:20:41 +05301605 unsigned int channel_step = 0x40 * num_of_channels(ctrl);
Angel Pons7c49cb82020-03-16 23:17:32 +01001606
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001607 for (j = 0; j < 16; j++)
1608 write32((void *)(0x04000000 + channel_offset + j * 4), 0xffffffff);
Angel Pons7c49cb82020-03-16 23:17:32 +01001609
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001610 for (j = 0; j < 16; j++)
1611 write32((void *)(0x04000000 + channel_offset + channel_step + j * 4), 0);
Angel Pons7c49cb82020-03-16 23:17:32 +01001612
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001613 sfence();
Angel Pons765d4652020-11-11 14:44:35 +01001614
1615 program_wdb_pattern_length(channel, 16);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001616}
1617
Angel Pons88521882020-01-05 20:21:20 +01001618static void precharge(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001619{
1620 int channel, slotrank, lane;
1621
1622 FOR_ALL_POPULATED_CHANNELS {
1623 FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons891f2bc2020-01-10 01:27:28 +01001624 ctrl->timings[channel][slotrank].lanes[lane].falling = 16;
1625 ctrl->timings[channel][slotrank].lanes[lane].rising = 16;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001626 }
1627
1628 program_timings(ctrl, channel);
1629
1630 FOR_ALL_POPULATED_RANKS {
Angel Pons88521882020-01-05 20:21:20 +01001631 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001632
Angel Ponsffd50152020-11-12 11:03:10 +01001633 iosav_write_read_mpr_sequence(
1634 channel, slotrank, ctrl->tMOD, 3, 4, 1, ctrl->CAS + 8);
Felix Held9cf1dd22018-07-31 14:52:40 +02001635
Angel Pons7c49cb82020-03-16 23:17:32 +01001636 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001637 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001638
Angel Pons88521882020-01-05 20:21:20 +01001639 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001640 }
1641
1642 FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons891f2bc2020-01-10 01:27:28 +01001643 ctrl->timings[channel][slotrank].lanes[lane].falling = 48;
1644 ctrl->timings[channel][slotrank].lanes[lane].rising = 48;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001645 }
1646
1647 program_timings(ctrl, channel);
1648
1649 FOR_ALL_POPULATED_RANKS {
Angel Pons88521882020-01-05 20:21:20 +01001650 wait_for_iosav(channel);
Angel Pons3abd2062020-05-03 00:25:02 +02001651
Angel Ponsffd50152020-11-12 11:03:10 +01001652 iosav_write_read_mpr_sequence(
1653 channel, slotrank, ctrl->tMOD, 3, 4, 1, ctrl->CAS + 8);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001654
Angel Pons7c49cb82020-03-16 23:17:32 +01001655 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001656 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02001657
Angel Pons88521882020-01-05 20:21:20 +01001658 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001659 }
1660 }
1661}
1662
Angel Pons88521882020-01-05 20:21:20 +01001663static void test_timB(ramctr_timing *ctrl, int channel, int slotrank)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001664{
1665 /* enable DQs on this slotrank */
Angel Ponsdc5539f2020-11-12 12:44:25 +01001666 write_mrreg(ctrl, channel, slotrank, 1, make_mr1(ctrl, slotrank, channel) | 1 << 7);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001667
Angel Pons88521882020-01-05 20:21:20 +01001668 wait_for_iosav(channel);
Angel Pons8f0757e2020-11-11 23:03:36 +01001669
1670 const struct iosav_ssq sequence[] = {
1671 /* DRAM command NOP */
1672 [0] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001673 .sp_cmd_ctrl = {
1674 .command = IOSAV_NOP,
1675 .ranksel_ap = 1,
1676 },
1677 .subseq_ctrl = {
1678 .cmd_executions = 1,
1679 .cmd_delay_gap = 3,
1680 .post_ssq_wait = ctrl->CWL + ctrl->tWLO,
1681 .data_direction = SSQ_WR,
1682 },
1683 .sp_cmd_addr = {
1684 .address = 8,
1685 .rowbits = 0,
1686 .bank = 0,
1687 .rank = slotrank,
1688 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001689 },
1690 /* DRAM command NOP */
1691 [1] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001692 .sp_cmd_ctrl = {
1693 .command = IOSAV_NOP_ALT,
1694 .ranksel_ap = 1,
1695 },
1696 .subseq_ctrl = {
1697 .cmd_executions = 1,
1698 .cmd_delay_gap = 3,
1699 .post_ssq_wait = ctrl->CAS + 38,
1700 .data_direction = SSQ_RD,
1701 },
1702 .sp_cmd_addr = {
1703 .address = 4,
1704 .rowbits = 0,
1705 .bank = 0,
1706 .rank = slotrank,
1707 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001708 },
1709 };
1710 iosav_write_sequence(channel, sequence, ARRAY_SIZE(sequence));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001711
Angel Pons7c49cb82020-03-16 23:17:32 +01001712 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001713 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02001714
Angel Pons88521882020-01-05 20:21:20 +01001715 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001716
1717 /* disable DQs on this slotrank */
Angel Ponsdc5539f2020-11-12 12:44:25 +01001718 write_mrreg(ctrl, channel, slotrank, 1,
1719 make_mr1(ctrl, slotrank, channel) | 1 << 12 | 1 << 7);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001720}
1721
1722static int discover_timB(ramctr_timing *ctrl, int channel, int slotrank)
1723{
1724 int timB;
1725 int statistics[NUM_LANES][128];
1726 int lane;
1727
Angel Pons88521882020-01-05 20:21:20 +01001728 MCHBAR32(GDCRTRAININGMOD) = 0x108052 | (slotrank << 2);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001729
1730 for (timB = 0; timB < 128; timB++) {
1731 FOR_ALL_LANES {
1732 ctrl->timings[channel][slotrank].lanes[lane].timB = timB;
1733 }
1734 program_timings(ctrl, channel);
1735
1736 test_timB(ctrl, channel, slotrank);
1737
1738 FOR_ALL_LANES {
Felix Heldfb19c8a2020-01-14 21:27:59 +01001739 statistics[lane][timB] = !((MCHBAR32(lane_base[lane] +
1740 GDCRTRAININGRESULT(channel, (timB / 32) & 1)) >>
1741 (timB % 32)) & 1);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001742 }
1743 }
1744 FOR_ALL_LANES {
1745 struct run rn = get_longest_zero_run(statistics[lane], 128);
Angel Pons7c49cb82020-03-16 23:17:32 +01001746 /*
1747 * timC is a direct function of timB's 6 LSBs. Some tests increments the value
1748 * of timB by a small value, which might cause the 6-bit value to overflow if
1749 * it's close to 0x3f. Increment the value by a small offset if it's likely
1750 * to overflow, to make sure it won't overflow while running tests and bricks
1751 * the system due to a non matching timC.
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001752 *
Angel Pons7c49cb82020-03-16 23:17:32 +01001753 * TODO: find out why some tests (edge write discovery) increment timB.
1754 */
1755 if ((rn.start & 0x3f) == 0x3e)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001756 rn.start += 2;
Angel Pons7c49cb82020-03-16 23:17:32 +01001757 else if ((rn.start & 0x3f) == 0x3f)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001758 rn.start += 1;
Angel Pons7c49cb82020-03-16 23:17:32 +01001759
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001760 ctrl->timings[channel][slotrank].lanes[lane].timB = rn.start;
1761 if (rn.all) {
1762 printk(BIOS_EMERG, "timB discovery failed: %d, %d, %d\n",
1763 channel, slotrank, lane);
Angel Pons7c49cb82020-03-16 23:17:32 +01001764
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001765 return MAKE_ERR;
1766 }
Patrick Rudolph368b6152016-11-25 16:36:52 +01001767 printram("timB: %d, %d, %d: 0x%02x-0x%02x-0x%02x\n",
1768 channel, slotrank, lane, rn.start, rn.middle, rn.end);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001769 }
1770 return 0;
1771}
1772
1773static int get_timB_high_adjust(u64 val)
1774{
1775 int i;
1776
Angel Ponsbf13ef02020-11-11 18:40:06 +01001777 /* DQS is good enough */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001778 if (val == 0xffffffffffffffffLL)
1779 return 0;
1780
1781 if (val >= 0xf000000000000000LL) {
Angel Ponsbf13ef02020-11-11 18:40:06 +01001782 /* DQS is late, needs negative adjustment */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001783 for (i = 0; i < 8; i++)
1784 if (val << (8 * (7 - i) + 4))
1785 return -i;
1786 } else {
Angel Ponsbf13ef02020-11-11 18:40:06 +01001787 /* DQS is early, needs positive adjustment */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001788 for (i = 0; i < 8; i++)
1789 if (val >> (8 * (7 - i) + 4))
1790 return i;
1791 }
1792 return 8;
1793}
1794
Angel Ponsbf13ef02020-11-11 18:40:06 +01001795static void train_write_flyby(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001796{
1797 int channel, slotrank, lane, old;
Angel Pons88521882020-01-05 20:21:20 +01001798 MCHBAR32(GDCRTRAININGMOD) = 0x200;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001799 FOR_ALL_POPULATED_CHANNELS {
1800 fill_pattern1(ctrl, channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001801 }
1802 FOR_ALL_POPULATED_CHANNELS FOR_ALL_POPULATED_RANKS {
1803
Angel Pons765d4652020-11-11 14:44:35 +01001804 /* Reset read and write WDB pointers */
Angel Pons88521882020-01-05 20:21:20 +01001805 MCHBAR32(IOSAV_DATA_CTL_ch(channel)) = 0x10001;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001806
Angel Pons88521882020-01-05 20:21:20 +01001807 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001808
Angel Ponsffd50152020-11-12 11:03:10 +01001809 iosav_write_misc_write_sequence(ctrl, channel, slotrank, 3, 1, 3, 3, 31);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001810
Angel Pons7c49cb82020-03-16 23:17:32 +01001811 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001812 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001813
Angel Pons88521882020-01-05 20:21:20 +01001814 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001815
Angel Pons8f0757e2020-11-11 23:03:36 +01001816 const struct iosav_ssq rd_sequence[] = {
1817 /* DRAM command PREA */
1818 [0] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001819 .sp_cmd_ctrl = {
1820 .command = IOSAV_PRE,
1821 .ranksel_ap = 1,
1822 },
1823 .subseq_ctrl = {
1824 .cmd_executions = 1,
1825 .cmd_delay_gap = 3,
1826 .post_ssq_wait = ctrl->tRP,
1827 .data_direction = SSQ_NA,
1828 },
1829 .sp_cmd_addr = {
1830 .address = 1024,
1831 .rowbits = 6,
1832 .bank = 0,
1833 .rank = slotrank,
1834 },
1835 .addr_update = {
1836 .addr_wrap = 18,
1837 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001838 },
1839 /* DRAM command ACT */
1840 [1] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001841 .sp_cmd_ctrl = {
1842 .command = IOSAV_ACT,
1843 .ranksel_ap = 1,
1844 },
1845 .subseq_ctrl = {
1846 .cmd_executions = 1,
1847 .cmd_delay_gap = 3,
1848 .post_ssq_wait = ctrl->tRCD,
1849 .data_direction = SSQ_NA,
1850 },
1851 .sp_cmd_addr = {
1852 .address = 0,
1853 .rowbits = 6,
1854 .bank = 0,
1855 .rank = slotrank,
1856 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001857 },
1858 /* DRAM command RD */
1859 [2] = {
Angel Pons3abd2062020-05-03 00:25:02 +02001860 .sp_cmd_ctrl = {
1861 .command = IOSAV_RD,
1862 .ranksel_ap = 3,
1863 },
1864 .subseq_ctrl = {
1865 .cmd_executions = 1,
1866 .cmd_delay_gap = 3,
1867 .post_ssq_wait = ctrl->tRP +
Angel Ponsca00dec2020-05-02 15:04:00 +02001868 ctrl->timings[channel][slotrank].roundtrip_latency +
Angel Pons3abd2062020-05-03 00:25:02 +02001869 ctrl->timings[channel][slotrank].io_latency,
1870 .data_direction = SSQ_RD,
1871 },
1872 .sp_cmd_addr = {
1873 .address = 8,
1874 .rowbits = 6,
1875 .bank = 0,
1876 .rank = slotrank,
1877 },
Angel Pons8f0757e2020-11-11 23:03:36 +01001878 },
1879 };
1880 iosav_write_sequence(channel, rd_sequence, ARRAY_SIZE(rd_sequence));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001881
Angel Pons7c49cb82020-03-16 23:17:32 +01001882 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001883 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02001884
Angel Pons88521882020-01-05 20:21:20 +01001885 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001886 FOR_ALL_LANES {
Felix Heldfb19c8a2020-01-14 21:27:59 +01001887 u64 res = MCHBAR32(lane_base[lane] + GDCRTRAININGRESULT1(channel));
Felix Held283b44662020-01-14 21:14:42 +01001888 res |= ((u64) MCHBAR32(lane_base[lane] +
Felix Heldfb19c8a2020-01-14 21:27:59 +01001889 GDCRTRAININGRESULT2(channel))) << 32;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001890 old = ctrl->timings[channel][slotrank].lanes[lane].timB;
1891 ctrl->timings[channel][slotrank].lanes[lane].timB +=
1892 get_timB_high_adjust(res) * 64;
1893
1894 printram("High adjust %d:%016llx\n", lane, res);
Angel Pons891f2bc2020-01-10 01:27:28 +01001895 printram("Bval+: %d, %d, %d, %x -> %x\n", channel, slotrank, lane,
1896 old, ctrl->timings[channel][slotrank].lanes[lane].timB);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001897 }
1898 }
Angel Pons88521882020-01-05 20:21:20 +01001899 MCHBAR32(GDCRTRAININGMOD) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001900}
1901
Angel Pons88521882020-01-05 20:21:20 +01001902static void write_op(ramctr_timing *ctrl, int channel)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001903{
1904 int slotrank;
1905
Angel Pons88521882020-01-05 20:21:20 +01001906 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001907
1908 /* choose an existing rank. */
1909 slotrank = !(ctrl->rankmap[channel] & 1) ? 2 : 0;
1910
Angel Ponsffd50152020-11-12 11:03:10 +01001911 iosav_write_zqcs_sequence(channel, slotrank, 4, 4, 31);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001912
Angel Pons7c49cb82020-03-16 23:17:32 +01001913 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001914 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02001915
Angel Pons88521882020-01-05 20:21:20 +01001916 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001917}
1918
Angel Pons7c49cb82020-03-16 23:17:32 +01001919/*
1920 * Compensate the skew between CMD/ADDR/CLK and DQ/DQS lanes.
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001921 *
Angel Pons7c49cb82020-03-16 23:17:32 +01001922 * Since DDR3 uses a fly-by topology, the data and strobes signals reach the chips at different
1923 * times with respect to command, address and clock signals. By delaying either all DQ/DQS or
1924 * all CMD/ADDR/CLK signals, a full phase shift can be introduced. It is assumed that the
1925 * CLK/ADDR/CMD signals have the same routing delay.
1926 *
1927 * To find the required phase shift the DRAM is placed in "write leveling" mode. In this mode,
1928 * the DRAM-chip samples the CLK on every DQS edge and feeds back the sampled value on the data
1929 * lanes (DQ).
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001930 */
Angel Pons88521882020-01-05 20:21:20 +01001931int write_training(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001932{
1933 int channel, slotrank, lane;
1934 int err;
1935
1936 FOR_ALL_POPULATED_CHANNELS
Angel Ponsdc5539f2020-11-12 12:44:25 +01001937 MCHBAR32_OR(TC_RWP_ch(channel), 1 << 27);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001938
1939 FOR_ALL_POPULATED_CHANNELS {
1940 write_op(ctrl, channel);
Angel Ponsdc5539f2020-11-12 12:44:25 +01001941 MCHBAR32_OR(SCHED_CBIT_ch(channel), 1 << 21);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001942 }
1943
Angel Pons7c49cb82020-03-16 23:17:32 +01001944 /* Refresh disable */
Angel Ponsdc5539f2020-11-12 12:44:25 +01001945 MCHBAR32_AND(MC_INIT_STATE_G, ~(1 << 3));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001946 FOR_ALL_POPULATED_CHANNELS {
1947 write_op(ctrl, channel);
1948 }
1949
Angel Pons7c49cb82020-03-16 23:17:32 +01001950 /* Enable write leveling on all ranks
1951 Disable all DQ outputs
1952 Only NOP is allowed in this mode */
1953 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS
1954 write_mrreg(ctrl, channel, slotrank, 1,
Angel Ponsdc5539f2020-11-12 12:44:25 +01001955 make_mr1(ctrl, slotrank, channel) | 1 << 12 | 1 << 7);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001956
Angel Pons88521882020-01-05 20:21:20 +01001957 MCHBAR32(GDCRTRAININGMOD) = 0x108052;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001958
1959 toggle_io_reset();
1960
Angel Pons7c49cb82020-03-16 23:17:32 +01001961 /* Set any valid value for timB, it gets corrected later */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001962 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS {
1963 err = discover_timB(ctrl, channel, slotrank);
1964 if (err)
1965 return err;
1966 }
1967
Angel Pons7c49cb82020-03-16 23:17:32 +01001968 /* Disable write leveling on all ranks */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001969 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS
Angel Pons7c49cb82020-03-16 23:17:32 +01001970 write_mrreg(ctrl, channel, slotrank, 1, make_mr1(ctrl, slotrank, channel));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001971
Angel Pons88521882020-01-05 20:21:20 +01001972 MCHBAR32(GDCRTRAININGMOD) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001973
1974 FOR_ALL_POPULATED_CHANNELS
Angel Pons88521882020-01-05 20:21:20 +01001975 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001976
Angel Pons7c49cb82020-03-16 23:17:32 +01001977 /* Refresh enable */
Angel Ponsdc5539f2020-11-12 12:44:25 +01001978 MCHBAR32_OR(MC_INIT_STATE_G, 1 << 3);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001979
1980 FOR_ALL_POPULATED_CHANNELS {
Angel Ponsdc5539f2020-11-12 12:44:25 +01001981 MCHBAR32_AND(SCHED_CBIT_ch(channel), ~(1 << 21));
Angel Pons88521882020-01-05 20:21:20 +01001982 MCHBAR32(IOSAV_STATUS_ch(channel));
1983 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001984
Angel Ponsffd50152020-11-12 11:03:10 +01001985 iosav_write_zqcs_sequence(channel, 0, 4, 101, 31);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001986
Angel Pons7c49cb82020-03-16 23:17:32 +01001987 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02001988 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02001989
Angel Pons88521882020-01-05 20:21:20 +01001990 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01001991 }
1992
1993 toggle_io_reset();
1994
1995 printram("CPE\n");
1996 precharge(ctrl);
1997 printram("CPF\n");
1998
1999 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002000 MCHBAR32_AND(IOSAV_By_BW_MASK_ch(channel, lane), 0);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002001 }
2002
2003 FOR_ALL_POPULATED_CHANNELS {
2004 fill_pattern0(ctrl, channel, 0xaaaaaaaa, 0x55555555);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002005 }
2006
2007 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS {
2008 err = discover_timC(ctrl, channel, slotrank);
2009 if (err)
2010 return err;
2011 }
2012
2013 FOR_ALL_POPULATED_CHANNELS
2014 program_timings(ctrl, channel);
2015
2016 /* measure and adjust timB timings */
Angel Ponsbf13ef02020-11-11 18:40:06 +01002017 train_write_flyby(ctrl);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002018
2019 FOR_ALL_POPULATED_CHANNELS
2020 program_timings(ctrl, channel);
2021
2022 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002023 MCHBAR32_AND(IOSAV_By_BW_MASK_ch(channel, lane), 0);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002024 }
2025 return 0;
2026}
2027
Angel Ponsbf13ef02020-11-11 18:40:06 +01002028static int test_command_training(ramctr_timing *ctrl, int channel, int slotrank)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002029{
2030 struct ram_rank_timings saved_rt = ctrl->timings[channel][slotrank];
2031 int timC_delta;
2032 int lanes_ok = 0;
2033 int ctr = 0;
2034 int lane;
2035
2036 for (timC_delta = -5; timC_delta <= 5; timC_delta++) {
2037 FOR_ALL_LANES {
2038 ctrl->timings[channel][slotrank].lanes[lane].timC =
2039 saved_rt.lanes[lane].timC + timC_delta;
2040 }
2041 program_timings(ctrl, channel);
2042 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002043 MCHBAR32(IOSAV_By_ERROR_COUNT(lane)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002044 }
2045
Angel Pons765d4652020-11-11 14:44:35 +01002046 /* Reset read WDB pointer */
Angel Pons88521882020-01-05 20:21:20 +01002047 MCHBAR32(IOSAV_DATA_CTL_ch(channel)) = 0x1f;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002048
Angel Pons88521882020-01-05 20:21:20 +01002049 wait_for_iosav(channel);
Angel Pons8f0757e2020-11-11 23:03:36 +01002050
Angel Ponsffd50152020-11-12 11:03:10 +01002051 iosav_write_command_training_sequence(ctrl, channel, slotrank, ctr);
Angel Pons8f0757e2020-11-11 23:03:36 +01002052
2053 /* Program LFSR for the RD/WR subsequences */
2054 MCHBAR32(IOSAV_n_ADDRESS_LFSR_ch(channel, 1)) = 0x389abcd;
2055 MCHBAR32(IOSAV_n_ADDRESS_LFSR_ch(channel, 2)) = 0x389abcd;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002056
Angel Pons7c49cb82020-03-16 23:17:32 +01002057 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002058 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02002059
Angel Pons88521882020-01-05 20:21:20 +01002060 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002061 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002062 u32 r32 = MCHBAR32(IOSAV_By_ERROR_COUNT_ch(channel, lane));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002063
2064 if (r32 == 0)
2065 lanes_ok |= 1 << lane;
2066 }
2067 ctr++;
Patrick Rudolphdd662872017-10-28 18:20:11 +02002068 if (lanes_ok == ((1 << ctrl->lanes) - 1))
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002069 break;
2070 }
2071
2072 ctrl->timings[channel][slotrank] = saved_rt;
2073
Patrick Rudolphdd662872017-10-28 18:20:11 +02002074 return lanes_ok != ((1 << ctrl->lanes) - 1);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002075}
2076
Angel Pons88521882020-01-05 20:21:20 +01002077static void fill_pattern5(ramctr_timing *ctrl, int channel, int patno)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002078{
Subrata Banikb1434fc2019-03-15 22:20:41 +05302079 unsigned int i, j;
Angel Pons7c49cb82020-03-16 23:17:32 +01002080 unsigned int offset = get_precedening_channels(ctrl, channel) * 0x40;
2081 unsigned int step = 0x40 * num_of_channels(ctrl);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002082
2083 if (patno) {
2084 u8 base8 = 0x80 >> ((patno - 1) % 8);
2085 u32 base = base8 | (base8 << 8) | (base8 << 16) | (base8 << 24);
2086 for (i = 0; i < 32; i++) {
2087 for (j = 0; j < 16; j++) {
2088 u32 val = use_base[patno - 1][i] & (1 << (j / 2)) ? base : 0;
Angel Pons7c49cb82020-03-16 23:17:32 +01002089
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002090 if (invert[patno - 1][i] & (1 << (j / 2)))
2091 val = ~val;
Angel Pons7c49cb82020-03-16 23:17:32 +01002092
2093 write32((void *)((1 << 26) + offset + i * step + j * 4), val);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002094 }
2095 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002096 } else {
Angel Pons7c49cb82020-03-16 23:17:32 +01002097 for (i = 0; i < ARRAY_SIZE(pattern); i++) {
2098 for (j = 0; j < 16; j++) {
2099 const u32 val = pattern[i][j];
2100 write32((void *)((1 << 26) + offset + i * step + j * 4), val);
2101 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002102 }
2103 sfence();
2104 }
Angel Pons765d4652020-11-11 14:44:35 +01002105
2106 program_wdb_pattern_length(channel, 256);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002107}
2108
Angel Pons88521882020-01-05 20:21:20 +01002109static void reprogram_320c(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002110{
2111 int channel, slotrank;
2112
2113 FOR_ALL_POPULATED_CHANNELS {
Angel Pons88521882020-01-05 20:21:20 +01002114 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002115
Angel Pons7c49cb82020-03-16 23:17:32 +01002116 /* Choose an existing rank */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002117 slotrank = !(ctrl->rankmap[channel] & 1) ? 2 : 0;
2118
Angel Ponsffd50152020-11-12 11:03:10 +01002119 iosav_write_zqcs_sequence(channel, slotrank, 4, 4, 31);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002120
Angel Pons7c49cb82020-03-16 23:17:32 +01002121 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002122 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02002123
Angel Pons88521882020-01-05 20:21:20 +01002124 wait_for_iosav(channel);
Angel Ponsdc5539f2020-11-12 12:44:25 +01002125 MCHBAR32_OR(SCHED_CBIT_ch(channel), 1 << 21);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002126 }
2127
2128 /* refresh disable */
Angel Ponsdc5539f2020-11-12 12:44:25 +01002129 MCHBAR32_AND(MC_INIT_STATE_G, ~(1 << 3));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002130 FOR_ALL_POPULATED_CHANNELS {
Angel Pons88521882020-01-05 20:21:20 +01002131 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002132
2133 /* choose an existing rank. */
2134 slotrank = !(ctrl->rankmap[channel] & 1) ? 2 : 0;
2135
Angel Ponsffd50152020-11-12 11:03:10 +01002136 iosav_write_zqcs_sequence(channel, slotrank, 4, 4, 31);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002137
Angel Pons7c49cb82020-03-16 23:17:32 +01002138 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002139 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02002140
Angel Pons88521882020-01-05 20:21:20 +01002141 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002142 }
2143
Angel Pons7c49cb82020-03-16 23:17:32 +01002144 /* JEDEC reset */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002145 dram_jedecreset(ctrl);
Angel Pons7c49cb82020-03-16 23:17:32 +01002146
2147 /* MRS commands */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002148 dram_mrscommands(ctrl);
2149
2150 toggle_io_reset();
2151}
2152
Angel Ponsbf13ef02020-11-11 18:40:06 +01002153#define CT_MIN_PI -127
2154#define CT_MAX_PI 128
2155#define CT_PI_LENGTH (CT_MAX_PI - CT_MIN_PI + 1)
2156
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002157#define MIN_C320C_LEN 13
2158
2159static int try_cmd_stretch(ramctr_timing *ctrl, int channel, int cmd_stretch)
2160{
2161 struct ram_rank_timings saved_timings[NUM_CHANNELS][NUM_SLOTRANKS];
2162 int slotrank;
Angel Ponsbf13ef02020-11-11 18:40:06 +01002163 int command_pi;
2164 int stat[NUM_SLOTRANKS][CT_PI_LENGTH];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002165 int delta = 0;
2166
2167 printram("Trying cmd_stretch %d on channel %d\n", cmd_stretch, channel);
2168
2169 FOR_ALL_POPULATED_RANKS {
Angel Pons891f2bc2020-01-10 01:27:28 +01002170 saved_timings[channel][slotrank] = ctrl->timings[channel][slotrank];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002171 }
2172
2173 ctrl->cmd_stretch[channel] = cmd_stretch;
2174
Angel Pons88521882020-01-05 20:21:20 +01002175 MCHBAR32(TC_RAP_ch(channel)) =
Angel Pons7c49cb82020-03-16 23:17:32 +01002176 (ctrl->tRRD << 0)
2177 | (ctrl->tRTP << 4)
2178 | (ctrl->tCKE << 8)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002179 | (ctrl->tWTR << 12)
2180 | (ctrl->tFAW << 16)
Angel Pons7c49cb82020-03-16 23:17:32 +01002181 | (ctrl->tWR << 24)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002182 | (ctrl->cmd_stretch[channel] << 30);
2183
2184 if (ctrl->cmd_stretch[channel] == 2)
2185 delta = 2;
2186 else if (ctrl->cmd_stretch[channel] == 0)
2187 delta = 4;
2188
2189 FOR_ALL_POPULATED_RANKS {
Angel Pons88521882020-01-05 20:21:20 +01002190 ctrl->timings[channel][slotrank].roundtrip_latency -= delta;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002191 }
2192
Angel Ponsbf13ef02020-11-11 18:40:06 +01002193 for (command_pi = CT_MIN_PI; command_pi < CT_MAX_PI; command_pi++) {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002194 FOR_ALL_POPULATED_RANKS {
Angel Ponsbf13ef02020-11-11 18:40:06 +01002195 ctrl->timings[channel][slotrank].pi_coding = command_pi;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002196 }
2197 program_timings(ctrl, channel);
2198 reprogram_320c(ctrl);
2199 FOR_ALL_POPULATED_RANKS {
Angel Ponsbf13ef02020-11-11 18:40:06 +01002200 stat[slotrank][command_pi - CT_MIN_PI] =
2201 test_command_training(ctrl, channel, slotrank);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002202 }
2203 }
2204 FOR_ALL_POPULATED_RANKS {
Angel Ponsbf13ef02020-11-11 18:40:06 +01002205 struct run rn = get_longest_zero_run(stat[slotrank], CT_PI_LENGTH - 1);
Angel Pons7c49cb82020-03-16 23:17:32 +01002206
Angel Ponsbf13ef02020-11-11 18:40:06 +01002207 ctrl->timings[channel][slotrank].pi_coding = rn.middle + CT_MIN_PI;
Patrick Rudolph368b6152016-11-25 16:36:52 +01002208 printram("cmd_stretch: %d, %d: 0x%02x-0x%02x-0x%02x\n",
2209 channel, slotrank, rn.start, rn.middle, rn.end);
Angel Pons7c49cb82020-03-16 23:17:32 +01002210
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002211 if (rn.all || rn.length < MIN_C320C_LEN) {
2212 FOR_ALL_POPULATED_RANKS {
2213 ctrl->timings[channel][slotrank] =
2214 saved_timings[channel][slotrank];
2215 }
2216 return MAKE_ERR;
2217 }
2218 }
2219
2220 return 0;
2221}
2222
Angel Pons7c49cb82020-03-16 23:17:32 +01002223/*
2224 * Adjust CMD phase shift and try multiple command rates.
2225 * A command rate of 2T doubles the time needed for address and command decode.
2226 */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002227int command_training(ramctr_timing *ctrl)
2228{
2229 int channel;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002230
2231 FOR_ALL_POPULATED_CHANNELS {
2232 fill_pattern5(ctrl, channel, 0);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002233 }
2234
2235 FOR_ALL_POPULATED_CHANNELS {
Patrick Rudolph58d16af2017-06-19 19:33:12 +02002236 int cmdrate, err;
2237
2238 /*
2239 * Dual DIMM per channel:
Angel Pons7c49cb82020-03-16 23:17:32 +01002240 * Issue:
2241 * While c320c discovery seems to succeed raminit will fail in write training.
2242 *
2243 * Workaround:
2244 * Skip 1T in dual DIMM mode, that's only supported by a few DIMMs.
2245 * Only try 1T mode for XMP DIMMs that request it in dual DIMM mode.
Patrick Rudolph58d16af2017-06-19 19:33:12 +02002246 *
2247 * Single DIMM per channel:
2248 * Try command rate 1T and 2T
2249 */
2250 cmdrate = ((ctrl->rankmap[channel] & 0x5) == 0x5);
Dan Elkoubydabebc32018-04-13 18:47:10 +03002251 if (ctrl->tCMD)
2252 /* XMP gives the CMD rate in clock ticks, not ns */
2253 cmdrate = MIN(DIV_ROUND_UP(ctrl->tCMD, 256) - 1, 1);
Patrick Rudolph58d16af2017-06-19 19:33:12 +02002254
Elyes HAOUASadda3f812018-01-31 23:02:35 +01002255 for (; cmdrate < 2; cmdrate++) {
Patrick Rudolph58d16af2017-06-19 19:33:12 +02002256 err = try_cmd_stretch(ctrl, channel, cmdrate << 1);
2257
2258 if (!err)
2259 break;
2260 }
2261
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002262 if (err) {
Patrick Rudolph58d16af2017-06-19 19:33:12 +02002263 printk(BIOS_EMERG, "c320c discovery failed\n");
2264 return err;
2265 }
2266
Angel Pons891f2bc2020-01-10 01:27:28 +01002267 printram("Using CMD rate %uT on channel %u\n", cmdrate + 1, channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002268 }
2269
2270 FOR_ALL_POPULATED_CHANNELS
2271 program_timings(ctrl, channel);
2272
2273 reprogram_320c(ctrl);
2274 return 0;
2275}
2276
Angel Pons891f2bc2020-01-10 01:27:28 +01002277static int discover_edges_real(ramctr_timing *ctrl, int channel, int slotrank, int *edges)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002278{
2279 int edge;
Angel Pons7c49cb82020-03-16 23:17:32 +01002280 int stats[NUM_LANES][MAX_EDGE_TIMING + 1];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002281 int lane;
2282
2283 for (edge = 0; edge <= MAX_EDGE_TIMING; edge++) {
2284 FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01002285 ctrl->timings[channel][slotrank].lanes[lane].rising = edge;
Angel Pons891f2bc2020-01-10 01:27:28 +01002286 ctrl->timings[channel][slotrank].lanes[lane].falling = edge;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002287 }
2288 program_timings(ctrl, channel);
2289
2290 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002291 MCHBAR32(IOSAV_By_ERROR_COUNT_ch(channel, lane)) = 0;
2292 MCHBAR32(IOSAV_By_BW_SERROR_C_ch(channel, lane));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002293 }
2294
Angel Pons88521882020-01-05 20:21:20 +01002295 wait_for_iosav(channel);
Angel Pons7c49cb82020-03-16 23:17:32 +01002296
Angel Ponsffd50152020-11-12 11:03:10 +01002297 iosav_write_read_mpr_sequence(
2298 channel, slotrank, ctrl->tMOD, 500, 4, 1, ctrl->CAS + 8);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002299
Angel Pons7c49cb82020-03-16 23:17:32 +01002300 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002301 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002302
Angel Pons88521882020-01-05 20:21:20 +01002303 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002304
2305 FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01002306 stats[lane][edge] = MCHBAR32(IOSAV_By_ERROR_COUNT_ch(channel, lane));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002307 }
2308 }
Angel Pons7c49cb82020-03-16 23:17:32 +01002309
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002310 FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01002311 struct run rn = get_longest_zero_run(stats[lane], MAX_EDGE_TIMING + 1);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002312 edges[lane] = rn.middle;
Angel Pons7c49cb82020-03-16 23:17:32 +01002313
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002314 if (rn.all) {
Angel Pons7c49cb82020-03-16 23:17:32 +01002315 printk(BIOS_EMERG, "edge discovery failed: %d, %d, %d\n", channel,
2316 slotrank, lane);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002317 return MAKE_ERR;
2318 }
Angel Pons7c49cb82020-03-16 23:17:32 +01002319 printram("eval %d, %d, %d: %02x\n", channel, slotrank, lane, edges[lane]);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002320 }
2321 return 0;
2322}
2323
2324int discover_edges(ramctr_timing *ctrl)
2325{
2326 int falling_edges[NUM_CHANNELS][NUM_SLOTRANKS][NUM_LANES];
2327 int rising_edges[NUM_CHANNELS][NUM_SLOTRANKS][NUM_LANES];
2328 int channel, slotrank, lane;
2329 int err;
2330
Angel Pons88521882020-01-05 20:21:20 +01002331 MCHBAR32(GDCRTRAININGMOD) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002332
2333 toggle_io_reset();
2334
2335 FOR_ALL_POPULATED_CHANNELS FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002336 MCHBAR32(IOSAV_By_BW_MASK_ch(channel, lane)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002337 }
2338
2339 FOR_ALL_POPULATED_CHANNELS {
2340 fill_pattern0(ctrl, channel, 0, 0);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002341 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002342 MCHBAR32(IOSAV_By_BW_SERROR_C_ch(channel, lane));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002343 }
2344
2345 FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons891f2bc2020-01-10 01:27:28 +01002346 ctrl->timings[channel][slotrank].lanes[lane].falling = 16;
2347 ctrl->timings[channel][slotrank].lanes[lane].rising = 16;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002348 }
2349
2350 program_timings(ctrl, channel);
2351
2352 FOR_ALL_POPULATED_RANKS {
Angel Pons88521882020-01-05 20:21:20 +01002353 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002354
Angel Ponsffd50152020-11-12 11:03:10 +01002355 iosav_write_read_mpr_sequence(
2356 channel, slotrank, ctrl->tMOD, 3, 4, 1, ctrl->CAS + 8);
Felix Held9cf1dd22018-07-31 14:52:40 +02002357
Angel Pons7c49cb82020-03-16 23:17:32 +01002358 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002359 iosav_run_once(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002360
Angel Pons88521882020-01-05 20:21:20 +01002361 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002362 }
2363
2364 /* XXX: check any measured value ? */
2365
2366 FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons891f2bc2020-01-10 01:27:28 +01002367 ctrl->timings[channel][slotrank].lanes[lane].falling = 48;
Angel Pons7c49cb82020-03-16 23:17:32 +01002368 ctrl->timings[channel][slotrank].lanes[lane].rising = 48;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002369 }
2370
2371 program_timings(ctrl, channel);
2372
2373 FOR_ALL_POPULATED_RANKS {
Angel Pons88521882020-01-05 20:21:20 +01002374 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002375
Angel Ponsffd50152020-11-12 11:03:10 +01002376 iosav_write_read_mpr_sequence(
2377 channel, slotrank, ctrl->tMOD, 3, 4, 1, ctrl->CAS + 8);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002378
Angel Pons7c49cb82020-03-16 23:17:32 +01002379 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002380 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02002381
Angel Pons88521882020-01-05 20:21:20 +01002382 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002383 }
2384
2385 /* XXX: check any measured value ? */
2386
2387 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002388 MCHBAR32(IOSAV_By_BW_MASK_ch(channel, lane)) =
Angel Pons891f2bc2020-01-10 01:27:28 +01002389 ~MCHBAR32(IOSAV_By_BW_SERROR_ch(channel, lane)) & 0xff;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002390 }
2391
2392 fill_pattern0(ctrl, channel, 0, 0xffffffff);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002393 }
2394
Angel Pons0c3936e2020-03-22 12:49:27 +01002395 /*
2396 * FIXME: Under some conditions, vendor BIOS sets both edges to the same value. It will
2397 * also use a single loop. It would seem that it is a debugging configuration.
2398 */
Angel Pons88521882020-01-05 20:21:20 +01002399 MCHBAR32(IOSAV_DC_MASK) = 0x300;
2400 printram("discover falling edges:\n[%x] = %x\n", IOSAV_DC_MASK, 0x300);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002401
2402 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS {
2403 err = discover_edges_real(ctrl, channel, slotrank,
Felix Held2bb3cdf2018-07-28 00:23:59 +02002404 falling_edges[channel][slotrank]);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002405 if (err)
2406 return err;
2407 }
2408
Angel Pons88521882020-01-05 20:21:20 +01002409 MCHBAR32(IOSAV_DC_MASK) = 0x200;
2410 printram("discover rising edges:\n[%x] = %x\n", IOSAV_DC_MASK, 0x200);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002411
2412 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS {
2413 err = discover_edges_real(ctrl, channel, slotrank,
2414 rising_edges[channel][slotrank]);
2415 if (err)
2416 return err;
2417 }
2418
Angel Pons88521882020-01-05 20:21:20 +01002419 MCHBAR32(IOSAV_DC_MASK) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002420
2421 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
2422 ctrl->timings[channel][slotrank].lanes[lane].falling =
2423 falling_edges[channel][slotrank][lane];
2424 ctrl->timings[channel][slotrank].lanes[lane].rising =
2425 rising_edges[channel][slotrank][lane];
2426 }
2427
2428 FOR_ALL_POPULATED_CHANNELS {
2429 program_timings(ctrl, channel);
2430 }
2431
2432 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002433 MCHBAR32(IOSAV_By_BW_MASK_ch(channel, lane)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002434 }
2435 return 0;
2436}
2437
Angel Pons7c49cb82020-03-16 23:17:32 +01002438static int discover_edges_write_real(ramctr_timing *ctrl, int channel, int slotrank, int *edges)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002439{
2440 int edge;
Angel Pons7c49cb82020-03-16 23:17:32 +01002441 u32 raw_stats[MAX_EDGE_TIMING + 1];
2442 int stats[MAX_EDGE_TIMING + 1];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002443 const int reg3000b24[] = { 0, 0xc, 0x2c };
2444 int lane, i;
2445 int lower[NUM_LANES];
2446 int upper[NUM_LANES];
2447 int pat;
2448
2449 FOR_ALL_LANES {
2450 lower[lane] = 0;
2451 upper[lane] = MAX_EDGE_TIMING;
2452 }
2453
2454 for (i = 0; i < 3; i++) {
Angel Pons88521882020-01-05 20:21:20 +01002455 MCHBAR32(GDCRTRAININGMOD_ch(channel)) = reg3000b24[i] << 24;
Angel Pons7c49cb82020-03-16 23:17:32 +01002456 printram("[%x] = 0x%08x\n", GDCRTRAININGMOD_ch(channel), reg3000b24[i] << 24);
2457
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002458 for (pat = 0; pat < NUM_PATTERNS; pat++) {
2459 fill_pattern5(ctrl, channel, pat);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002460 printram("using pattern %d\n", pat);
Angel Pons7c49cb82020-03-16 23:17:32 +01002461
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002462 for (edge = 0; edge <= MAX_EDGE_TIMING; edge++) {
2463 FOR_ALL_LANES {
2464 ctrl->timings[channel][slotrank].lanes[lane].
2465 rising = edge;
2466 ctrl->timings[channel][slotrank].lanes[lane].
2467 falling = edge;
2468 }
2469 program_timings(ctrl, channel);
2470
2471 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002472 MCHBAR32(IOSAV_By_ERROR_COUNT_ch(channel, lane)) = 0;
2473 MCHBAR32(IOSAV_By_BW_SERROR_C_ch(channel, lane));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002474 }
Angel Pons88521882020-01-05 20:21:20 +01002475 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002476
Angel Ponsffd50152020-11-12 11:03:10 +01002477 iosav_write_data_write_sequence(ctrl, channel, slotrank);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002478
Angel Pons7c49cb82020-03-16 23:17:32 +01002479 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002480 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02002481
Angel Pons88521882020-01-05 20:21:20 +01002482 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002483 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002484 MCHBAR32(IOSAV_By_ERROR_COUNT_ch(channel, lane));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002485 }
2486
Angel Pons7c49cb82020-03-16 23:17:32 +01002487 /* FIXME: This register only exists on Ivy Bridge */
Angel Pons098240eb2020-03-22 12:55:32 +01002488 raw_stats[edge] = MCHBAR32(IOSAV_BYTE_SERROR_C_ch(channel));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002489 }
Angel Pons7c49cb82020-03-16 23:17:32 +01002490
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002491 FOR_ALL_LANES {
2492 struct run rn;
2493 for (edge = 0; edge <= MAX_EDGE_TIMING; edge++)
Angel Pons7c49cb82020-03-16 23:17:32 +01002494 stats[edge] = !!(raw_stats[edge] & (1 << lane));
2495
2496 rn = get_longest_zero_run(stats, MAX_EDGE_TIMING + 1);
2497
2498 printram("edges: %d, %d, %d: 0x%02x-0x%02x-0x%02x, "
2499 "0x%02x-0x%02x\n", channel, slotrank, i, rn.start,
2500 rn.middle, rn.end, rn.start + ctrl->edge_offset[i],
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002501 rn.end - ctrl->edge_offset[i]);
Angel Pons7c49cb82020-03-16 23:17:32 +01002502
2503 lower[lane] = MAX(rn.start + ctrl->edge_offset[i], lower[lane]);
2504 upper[lane] = MIN(rn.end - ctrl->edge_offset[i], upper[lane]);
2505
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002506 edges[lane] = (lower[lane] + upper[lane]) / 2;
2507 if (rn.all || (lower[lane] > upper[lane])) {
Angel Pons7c49cb82020-03-16 23:17:32 +01002508 printk(BIOS_EMERG, "edge write discovery failed: "
2509 "%d, %d, %d\n", channel, slotrank, lane);
2510
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002511 return MAKE_ERR;
2512 }
2513 }
2514 }
2515 }
2516
Angel Pons88521882020-01-05 20:21:20 +01002517 MCHBAR32(GDCRTRAININGMOD_ch(0)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002518 printram("CPA\n");
2519 return 0;
2520}
2521
2522int discover_edges_write(ramctr_timing *ctrl)
2523{
2524 int falling_edges[NUM_CHANNELS][NUM_SLOTRANKS][NUM_LANES];
Angel Pons7c49cb82020-03-16 23:17:32 +01002525 int rising_edges[NUM_CHANNELS][NUM_SLOTRANKS][NUM_LANES];
2526 int channel, slotrank, lane, err;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002527
Angel Pons7c49cb82020-03-16 23:17:32 +01002528 /*
2529 * FIXME: Under some conditions, vendor BIOS sets both edges to the same value. It will
2530 * also use a single loop. It would seem that it is a debugging configuration.
2531 */
Angel Pons88521882020-01-05 20:21:20 +01002532 MCHBAR32(IOSAV_DC_MASK) = 0x300;
2533 printram("discover falling edges write:\n[%x] = %x\n", IOSAV_DC_MASK, 0x300);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002534
2535 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS {
2536 err = discover_edges_write_real(ctrl, channel, slotrank,
Angel Pons7c49cb82020-03-16 23:17:32 +01002537 falling_edges[channel][slotrank]);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002538 if (err)
2539 return err;
2540 }
2541
Angel Pons88521882020-01-05 20:21:20 +01002542 MCHBAR32(IOSAV_DC_MASK) = 0x200;
2543 printram("discover rising edges write:\n[%x] = %x\n", IOSAV_DC_MASK, 0x200);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002544
2545 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS {
2546 err = discover_edges_write_real(ctrl, channel, slotrank,
Angel Pons7c49cb82020-03-16 23:17:32 +01002547 rising_edges[channel][slotrank]);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002548 if (err)
2549 return err;
2550 }
2551
Angel Pons88521882020-01-05 20:21:20 +01002552 MCHBAR32(IOSAV_DC_MASK) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002553
2554 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
2555 ctrl->timings[channel][slotrank].lanes[lane].falling =
Angel Pons7c49cb82020-03-16 23:17:32 +01002556 falling_edges[channel][slotrank][lane];
2557
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002558 ctrl->timings[channel][slotrank].lanes[lane].rising =
Angel Pons7c49cb82020-03-16 23:17:32 +01002559 rising_edges[channel][slotrank][lane];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002560 }
2561
2562 FOR_ALL_POPULATED_CHANNELS
2563 program_timings(ctrl, channel);
2564
2565 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002566 MCHBAR32(IOSAV_By_BW_MASK_ch(channel, lane)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002567 }
2568 return 0;
2569}
2570
2571static void test_timC_write(ramctr_timing *ctrl, int channel, int slotrank)
2572{
Angel Pons88521882020-01-05 20:21:20 +01002573 wait_for_iosav(channel);
Angel Pons7c49cb82020-03-16 23:17:32 +01002574
Angel Ponsffd50152020-11-12 11:03:10 +01002575 iosav_write_aggressive_write_read_sequence(ctrl, channel, slotrank);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002576
Angel Pons7c49cb82020-03-16 23:17:32 +01002577 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002578 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02002579
Angel Pons88521882020-01-05 20:21:20 +01002580 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002581}
2582
2583int discover_timC_write(ramctr_timing *ctrl)
2584{
Angel Pons7c49cb82020-03-16 23:17:32 +01002585 const u8 rege3c_b24[3] = { 0, 0x0f, 0x2f };
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002586 int i, pat;
2587
2588 int lower[NUM_CHANNELS][NUM_SLOTRANKS][NUM_LANES];
2589 int upper[NUM_CHANNELS][NUM_SLOTRANKS][NUM_LANES];
2590 int channel, slotrank, lane;
2591
2592 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
2593 lower[channel][slotrank][lane] = 0;
2594 upper[channel][slotrank][lane] = MAX_TIMC;
2595 }
2596
Angel Pons88521882020-01-05 20:21:20 +01002597 /*
2598 * Enable IOSAV_n_SPECIAL_COMMAND_ADDR optimization.
2599 * FIXME: This must only be done on Ivy Bridge.
2600 */
2601 MCHBAR32(MCMNTS_SPARE) = 1;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002602 printram("discover timC write:\n");
2603
2604 for (i = 0; i < 3; i++)
2605 FOR_ALL_POPULATED_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +01002606
2607 /* FIXME: Setting the Write VREF must only be done on Ivy Bridge */
2608 MCHBAR32_AND_OR(GDCRCMDDEBUGMUXCFG_Cz_S(channel),
2609 ~0x3f000000, rege3c_b24[i] << 24);
2610
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002611 udelay(2);
Angel Pons7c49cb82020-03-16 23:17:32 +01002612
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002613 for (pat = 0; pat < NUM_PATTERNS; pat++) {
2614 FOR_ALL_POPULATED_RANKS {
2615 int timC;
Angel Pons7c49cb82020-03-16 23:17:32 +01002616 u32 raw_stats[MAX_TIMC + 1];
2617 int stats[MAX_TIMC + 1];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002618
2619 /* Make sure rn.start < rn.end */
Angel Pons7c49cb82020-03-16 23:17:32 +01002620 stats[MAX_TIMC] = 1;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002621
2622 fill_pattern5(ctrl, channel, pat);
Angel Pons7c49cb82020-03-16 23:17:32 +01002623
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002624 for (timC = 0; timC < MAX_TIMC; timC++) {
Angel Pons7c49cb82020-03-16 23:17:32 +01002625 FOR_ALL_LANES {
2626 ctrl->timings[channel][slotrank]
2627 .lanes[lane].timC = timC;
2628 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002629 program_timings(ctrl, channel);
2630
2631 test_timC_write (ctrl, channel, slotrank);
2632
Angel Pons7c49cb82020-03-16 23:17:32 +01002633 /* FIXME: Another IVB-only register! */
Angel Pons098240eb2020-03-22 12:55:32 +01002634 raw_stats[timC] = MCHBAR32(
2635 IOSAV_BYTE_SERROR_C_ch(channel));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002636 }
2637 FOR_ALL_LANES {
2638 struct run rn;
Angel Pons7c49cb82020-03-16 23:17:32 +01002639 for (timC = 0; timC < MAX_TIMC; timC++) {
2640 stats[timC] = !!(raw_stats[timC]
2641 & (1 << lane));
2642 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002643
Angel Pons7c49cb82020-03-16 23:17:32 +01002644 rn = get_longest_zero_run(stats, MAX_TIMC + 1);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002645 if (rn.all) {
Angel Pons7c49cb82020-03-16 23:17:32 +01002646 printk(BIOS_EMERG,
2647 "timC write discovery failed: "
2648 "%d, %d, %d\n", channel,
2649 slotrank, lane);
2650
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002651 return MAKE_ERR;
2652 }
Angel Pons7c49cb82020-03-16 23:17:32 +01002653 printram("timC: %d, %d, %d: "
2654 "0x%02x-0x%02x-0x%02x, "
2655 "0x%02x-0x%02x\n", channel, slotrank,
2656 i, rn.start, rn.middle, rn.end,
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002657 rn.start + ctrl->timC_offset[i],
Angel Pons7c49cb82020-03-16 23:17:32 +01002658 rn.end - ctrl->timC_offset[i]);
2659
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002660 lower[channel][slotrank][lane] =
Elyes HAOUASf97c1c92019-12-03 18:22:06 +01002661 MAX(rn.start + ctrl->timC_offset[i],
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002662 lower[channel][slotrank][lane]);
Angel Pons7c49cb82020-03-16 23:17:32 +01002663
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002664 upper[channel][slotrank][lane] =
Elyes HAOUASf97c1c92019-12-03 18:22:06 +01002665 MIN(rn.end - ctrl->timC_offset[i],
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002666 upper[channel][slotrank][lane]);
2667
2668 }
2669 }
2670 }
2671 }
2672
2673 FOR_ALL_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +01002674 /* FIXME: Setting the Write VREF must only be done on Ivy Bridge */
Angel Pons88521882020-01-05 20:21:20 +01002675 MCHBAR32_AND(GDCRCMDDEBUGMUXCFG_Cz_S(channel), ~0x3f000000);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002676 udelay(2);
2677 }
2678
Angel Pons88521882020-01-05 20:21:20 +01002679 /*
2680 * Disable IOSAV_n_SPECIAL_COMMAND_ADDR optimization.
2681 * FIXME: This must only be done on Ivy Bridge.
2682 */
2683 MCHBAR32(MCMNTS_SPARE) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002684
2685 printram("CPB\n");
2686
2687 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons7c49cb82020-03-16 23:17:32 +01002688 printram("timC %d, %d, %d: %x\n", channel, slotrank, lane,
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002689 (lower[channel][slotrank][lane] +
2690 upper[channel][slotrank][lane]) / 2);
Angel Pons7c49cb82020-03-16 23:17:32 +01002691
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002692 ctrl->timings[channel][slotrank].lanes[lane].timC =
2693 (lower[channel][slotrank][lane] +
2694 upper[channel][slotrank][lane]) / 2;
2695 }
2696 FOR_ALL_POPULATED_CHANNELS {
2697 program_timings(ctrl, channel);
2698 }
2699 return 0;
2700}
2701
Angel Pons88521882020-01-05 20:21:20 +01002702void normalize_training(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002703{
2704 int channel, slotrank, lane;
Patrick Rudolph3c8cb972016-11-25 16:00:01 +01002705 int mat;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002706
2707 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS {
2708 int delta;
Patrick Rudolph3c8cb972016-11-25 16:00:01 +01002709 mat = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002710 FOR_ALL_LANES mat =
Elyes HAOUASf97c1c92019-12-03 18:22:06 +01002711 MAX(ctrl->timings[channel][slotrank].lanes[lane].timA, mat);
Patrick Rudolph413edc82016-11-25 15:40:07 +01002712 printram("normalize %d, %d, %d: mat %d\n",
2713 channel, slotrank, lane, mat);
2714
Felix Heldef4fe3e2019-12-31 14:15:05 +01002715 delta = (mat >> 6) - ctrl->timings[channel][slotrank].io_latency;
Patrick Rudolph413edc82016-11-25 15:40:07 +01002716 printram("normalize %d, %d, %d: delta %d\n",
2717 channel, slotrank, lane, delta);
2718
Angel Pons88521882020-01-05 20:21:20 +01002719 ctrl->timings[channel][slotrank].roundtrip_latency += delta;
Felix Heldef4fe3e2019-12-31 14:15:05 +01002720 ctrl->timings[channel][slotrank].io_latency += delta;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002721 }
2722
2723 FOR_ALL_POPULATED_CHANNELS {
2724 program_timings(ctrl, channel);
2725 }
2726}
2727
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002728int channel_test(ramctr_timing *ctrl)
2729{
2730 int channel, slotrank, lane;
2731
2732 slotrank = 0;
2733 FOR_ALL_POPULATED_CHANNELS
Angel Pons88521882020-01-05 20:21:20 +01002734 if (MCHBAR32(MC_INIT_STATE_ch(channel)) & 0xa000) {
Angel Pons891f2bc2020-01-10 01:27:28 +01002735 printk(BIOS_EMERG, "Mini channel test failed (1): %d\n", channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002736 return MAKE_ERR;
2737 }
2738 FOR_ALL_POPULATED_CHANNELS {
2739 fill_pattern0(ctrl, channel, 0x12345678, 0x98765432);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002740 }
2741
2742 for (slotrank = 0; slotrank < 4; slotrank++)
2743 FOR_ALL_CHANNELS
2744 if (ctrl->rankmap[channel] & (1 << slotrank)) {
2745 FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01002746 MCHBAR32(IOSAV_By_ERROR_COUNT(lane)) = 0;
2747 MCHBAR32(IOSAV_By_BW_SERROR_C(lane)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002748 }
Angel Pons88521882020-01-05 20:21:20 +01002749 wait_for_iosav(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02002750
Angel Ponsffd50152020-11-12 11:03:10 +01002751 iosav_write_memory_test_sequence(ctrl, channel, slotrank);
Felix Held9cf1dd22018-07-31 14:52:40 +02002752
Angel Pons7c49cb82020-03-16 23:17:32 +01002753 /* Execute command queue */
Angel Pons38d901e2020-05-02 23:50:43 +02002754 iosav_run_once(channel);
Felix Held9cf1dd22018-07-31 14:52:40 +02002755
Angel Pons88521882020-01-05 20:21:20 +01002756 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002757 FOR_ALL_LANES
Angel Pons88521882020-01-05 20:21:20 +01002758 if (MCHBAR32(IOSAV_By_ERROR_COUNT_ch(channel, lane))) {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002759 printk(BIOS_EMERG, "Mini channel test failed (2): %d, %d, %d\n",
2760 channel, slotrank, lane);
2761 return MAKE_ERR;
2762 }
2763 }
2764 return 0;
2765}
2766
Patrick Rudolphdd662872017-10-28 18:20:11 +02002767void channel_scrub(ramctr_timing *ctrl)
2768{
2769 int channel, slotrank, row, rowsize;
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002770 u8 bank;
Patrick Rudolphdd662872017-10-28 18:20:11 +02002771
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002772 FOR_ALL_POPULATED_CHANNELS {
2773 wait_for_iosav(channel);
2774 fill_pattern0(ctrl, channel, 0, 0);
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002775 }
2776
2777 /*
2778 * During runtime the "scrubber" will periodically scan through the memory in the
2779 * physical address space, to identify and fix CRC errors.
2780 * The following loops writes to every DRAM address, setting the ECC bits to the
2781 * correct value. A read from this location will no longer return a CRC error,
2782 * except when a bit has toggled due to external events.
Angel Pons3b9d3e92020-11-11 19:10:39 +01002783 * The same could be achieved by writing to the physical memory map, but it's
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002784 * much more difficult due to SMM remapping, ME stolen memory, GFX stolen memory,
2785 * and firmware running in x86_32.
2786 */
Patrick Rudolphdd662872017-10-28 18:20:11 +02002787 FOR_ALL_POPULATED_CHANNELS FOR_ALL_POPULATED_RANKS {
2788 rowsize = 1 << ctrl->info.dimm[channel][slotrank >> 1].row_bits;
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002789 for (bank = 0; bank < 8; bank++) {
2790 for (row = 0; row < rowsize; row += 16) {
Patrick Rudolphdd662872017-10-28 18:20:11 +02002791
Angel Pons8f0757e2020-11-11 23:03:36 +01002792 u8 gap = MAX((ctrl->tFAW >> 2) + 1, ctrl->tRRD);
2793 const struct iosav_ssq sequence[] = {
2794 /*
2795 * DRAM command ACT
2796 * Opens the row for writing.
2797 */
2798 [0] = {
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002799 .sp_cmd_ctrl = {
2800 .command = IOSAV_ACT,
2801 .ranksel_ap = 1,
2802 },
2803 .subseq_ctrl = {
2804 .cmd_executions = 1,
2805 .cmd_delay_gap = gap,
2806 .post_ssq_wait = ctrl->tRCD,
2807 .data_direction = SSQ_NA,
2808 },
2809 .sp_cmd_addr = {
2810 .address = row,
2811 .rowbits = 6,
2812 .bank = bank,
2813 .rank = slotrank,
2814 },
2815 .addr_update = {
2816 .inc_addr_1 = 1,
2817 .addr_wrap = 18,
2818 },
Angel Pons8f0757e2020-11-11 23:03:36 +01002819 },
2820 /*
2821 * DRAM command WR
2822 * Writes (128 + 1) * 8 (burst length) * 8 (bus width)
2823 * bytes.
2824 */
2825 [1] = {
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002826 .sp_cmd_ctrl = {
2827 .command = IOSAV_WR,
2828 .ranksel_ap = 1,
2829 },
2830 .subseq_ctrl = {
2831 .cmd_executions = 129,
2832 .cmd_delay_gap = 4,
2833 .post_ssq_wait = ctrl->tWTR +
2834 ctrl->CWL + 8,
2835 .data_direction = SSQ_WR,
2836 },
2837 .sp_cmd_addr = {
2838 .address = row,
2839 .rowbits = 0,
2840 .bank = bank,
2841 .rank = slotrank,
2842 },
2843 .addr_update = {
2844 .inc_addr_8 = 1,
2845 .addr_wrap = 9,
2846 },
Angel Pons8f0757e2020-11-11 23:03:36 +01002847 },
2848 /*
2849 * DRAM command PRE
2850 * Closes the row.
2851 */
2852 [2] = {
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002853 .sp_cmd_ctrl = {
2854 .command = IOSAV_PRE,
2855 .ranksel_ap = 1,
2856 },
2857 .subseq_ctrl = {
2858 .cmd_executions = 1,
2859 .cmd_delay_gap = 4,
2860 .post_ssq_wait = ctrl->tRP,
2861 .data_direction = SSQ_NA,
2862 },
2863 .sp_cmd_addr = {
2864 .address = 0,
2865 .rowbits = 6,
2866 .bank = bank,
2867 .rank = slotrank,
2868 },
2869 .addr_update = {
2870 .addr_wrap = 18,
2871 },
Angel Pons8f0757e2020-11-11 23:03:36 +01002872 },
2873 };
2874 iosav_write_sequence(channel, sequence, ARRAY_SIZE(sequence));
Patrick Rudolphb5fa9c82020-05-01 18:35:05 +02002875
2876 /* Execute command queue */
2877 iosav_run_queue(channel, 16, 0);
2878
2879 wait_for_iosav(channel);
Angel Pons3abd2062020-05-03 00:25:02 +02002880 }
Patrick Rudolphdd662872017-10-28 18:20:11 +02002881 }
2882 }
2883}
2884
Angel Pons88521882020-01-05 20:21:20 +01002885void set_scrambling_seed(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002886{
2887 int channel;
2888
Angel Pons7c49cb82020-03-16 23:17:32 +01002889 /* FIXME: we hardcode seeds. Do we need to use some PRNG for them? I don't think so. */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002890 static u32 seeds[NUM_CHANNELS][3] = {
2891 {0x00009a36, 0xbafcfdcf, 0x46d1ab68},
2892 {0x00028bfa, 0x53fe4b49, 0x19ed5483}
2893 };
2894 FOR_ALL_POPULATED_CHANNELS {
Angel Ponsdc5539f2020-11-12 12:44:25 +01002895 MCHBAR32(SCHED_CBIT_ch(channel)) &= ~(1 << 28);
Angel Pons7c49cb82020-03-16 23:17:32 +01002896 MCHBAR32(SCRAMBLING_SEED_1_ch(channel)) = seeds[channel][0];
2897 MCHBAR32(SCRAMBLING_SEED_2_HI_ch(channel)) = seeds[channel][1];
2898 MCHBAR32(SCRAMBLING_SEED_2_LO_ch(channel)) = seeds[channel][2];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002899 }
2900}
2901
Angel Pons89ae6b82020-03-21 13:23:32 +01002902void set_wmm_behavior(const u32 cpu)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002903{
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002904 if (IS_SANDY_CPU(cpu) && (IS_SANDY_CPU_D0(cpu) || IS_SANDY_CPU_D1(cpu))) {
Angel Pons7c49cb82020-03-16 23:17:32 +01002905 MCHBAR32(SC_WDBWM) = 0x141d1519;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002906 } else {
Angel Pons7c49cb82020-03-16 23:17:32 +01002907 MCHBAR32(SC_WDBWM) = 0x551d1519;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002908 }
2909}
2910
Angel Pons88521882020-01-05 20:21:20 +01002911void prepare_training(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002912{
2913 int channel;
2914
2915 FOR_ALL_POPULATED_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +01002916 /* Always drive command bus */
Angel Ponsdc5539f2020-11-12 12:44:25 +01002917 MCHBAR32_OR(TC_RAP_ch(channel), 1 << 29);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002918 }
2919
2920 udelay(1);
2921
2922 FOR_ALL_POPULATED_CHANNELS {
Angel Pons88521882020-01-05 20:21:20 +01002923 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002924 }
2925}
2926
Angel Pons7c49cb82020-03-16 23:17:32 +01002927void set_read_write_timings(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002928{
2929 int channel, slotrank;
Patrick Rudolph19c3dad2016-11-26 11:37:45 +01002930
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002931 FOR_ALL_POPULATED_CHANNELS {
2932 u32 b20, b4_8_12;
Angel Pons88521882020-01-05 20:21:20 +01002933 int min_pi = 10000;
2934 int max_pi = -10000;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002935
2936 FOR_ALL_POPULATED_RANKS {
Angel Pons88521882020-01-05 20:21:20 +01002937 max_pi = MAX(ctrl->timings[channel][slotrank].pi_coding, max_pi);
2938 min_pi = MIN(ctrl->timings[channel][slotrank].pi_coding, min_pi);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002939 }
2940
Angel Pons7c49cb82020-03-16 23:17:32 +01002941 b20 = (max_pi - min_pi > 51) ? 0 : ctrl->ref_card_offset[channel];
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002942
Angel Pons7c49cb82020-03-16 23:17:32 +01002943 b4_8_12 = (ctrl->pi_coding_threshold < max_pi - min_pi) ? 0x3330 : 0x2220;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002944
Patrick Rudolph19c3dad2016-11-26 11:37:45 +01002945 dram_odt_stretch(ctrl, channel);
2946
Angel Ponsdc5539f2020-11-12 12:44:25 +01002947 MCHBAR32(TC_RWP_ch(channel)) = (1 << 27) | (2 << 24) | (b20 << 20) |
Felix Held2463aa92018-07-29 21:37:55 +02002948 ((ctrl->ref_card_offset[channel] + 2) << 16) | b4_8_12;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002949 }
2950}
2951
Angel Pons88521882020-01-05 20:21:20 +01002952void set_normal_operation(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002953{
2954 int channel;
2955 FOR_ALL_POPULATED_CHANNELS {
Angel Ponsdc5539f2020-11-12 12:44:25 +01002956 MCHBAR32(MC_INIT_STATE_ch(channel)) = (1 << 12) | ctrl->rankmap[channel];
2957 MCHBAR32_AND(TC_RAP_ch(channel), ~(1 << 29));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002958 }
2959}
2960
Angel Pons7c49cb82020-03-16 23:17:32 +01002961/* Encode the watermark latencies in a suitable format for graphics drivers consumption */
2962static int encode_wm(int ns)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002963{
Angel Pons88521882020-01-05 20:21:20 +01002964 return (ns + 499) / 500;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002965}
2966
Angel Pons7c49cb82020-03-16 23:17:32 +01002967/* FIXME: values in this function should be hardware revision-dependent */
Angel Pons88521882020-01-05 20:21:20 +01002968void final_registers(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002969{
Angel Ponsb50ca572020-11-11 19:07:20 +01002970 const bool is_mobile = get_platform_type() == PLATFORM_MOBILE;
Patrick Rudolph74203de2017-11-20 11:57:01 +01002971
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002972 int channel;
2973 int t1_cycles = 0, t1_ns = 0, t2_ns;
2974 int t3_ns;
2975 u32 r32;
2976
Angel Pons7c49cb82020-03-16 23:17:32 +01002977 /* FIXME: This register only exists on Ivy Bridge */
2978 MCHBAR32(WMM_READ_CONFIG) = 0x46;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002979
Felix Heldf9b826a2018-07-30 17:56:52 +02002980 FOR_ALL_CHANNELS
Angel Ponsdc5539f2020-11-12 12:44:25 +01002981 MCHBAR32_AND_OR(TC_OTHP_ch(channel), ~(3 << 12), 1 << 12);
Patrick Rudolph652c4912017-10-31 11:36:55 +01002982
Patrick Rudolph74203de2017-11-20 11:57:01 +01002983 if (is_mobile)
Patrick Rudolph652c4912017-10-31 11:36:55 +01002984 /* APD - DLL Off, 64 DCLKs until idle, decision per rank */
Angel Pons2a9a49b2019-12-31 14:24:12 +01002985 MCHBAR32(PM_PDWN_CONFIG) = 0x00000740;
Patrick Rudolph652c4912017-10-31 11:36:55 +01002986 else
Angel Pons7c49cb82020-03-16 23:17:32 +01002987 /* APD - PPD, 64 DCLKs until idle, decision per rank */
Angel Pons2a9a49b2019-12-31 14:24:12 +01002988 MCHBAR32(PM_PDWN_CONFIG) = 0x00000340;
Patrick Rudolph652c4912017-10-31 11:36:55 +01002989
Felix Heldf9b826a2018-07-30 17:56:52 +02002990 FOR_ALL_CHANNELS
Angel Pons88521882020-01-05 20:21:20 +01002991 MCHBAR32(PM_TRML_M_CONFIG_ch(channel)) = 0x00000aaa;
Felix Heldf9b826a2018-07-30 17:56:52 +02002992
Angel Pons88521882020-01-05 20:21:20 +01002993 MCHBAR32(PM_BW_LIMIT_CONFIG) = 0x5f7003ff; // OK
2994 MCHBAR32(PM_DLL_CONFIG) = 0x00073000 | ctrl->mdll_wake_delay; // OK
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002995
2996 FOR_ALL_CHANNELS {
2997 switch (ctrl->rankmap[channel]) {
Angel Pons7c49cb82020-03-16 23:17:32 +01002998 /* Unpopulated channel */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01002999 case 0:
Angel Pons88521882020-01-05 20:21:20 +01003000 MCHBAR32(PM_CMD_PWR_ch(channel)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003001 break;
Angel Pons7c49cb82020-03-16 23:17:32 +01003002 /* Only single-ranked dimms */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003003 case 1:
3004 case 4:
3005 case 5:
Angel Pons7c49cb82020-03-16 23:17:32 +01003006 MCHBAR32(PM_CMD_PWR_ch(channel)) = 0x00373131;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003007 break;
Angel Pons7c49cb82020-03-16 23:17:32 +01003008 /* Dual-ranked dimms present */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003009 default:
Angel Pons7c49cb82020-03-16 23:17:32 +01003010 MCHBAR32(PM_CMD_PWR_ch(channel)) = 0x009b6ea1;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003011 break;
3012 }
3013 }
3014
Felix Held50b7ed22019-12-30 20:41:54 +01003015 MCHBAR32(MEM_TRML_ESTIMATION_CONFIG) = 0xca9171e5;
Angel Pons7c49cb82020-03-16 23:17:32 +01003016 MCHBAR32_AND_OR(MEM_TRML_THRESHOLDS_CONFIG, ~0x00ffffff, 0x00e4d5d0);
Felix Held50b7ed22019-12-30 20:41:54 +01003017 MCHBAR32_AND(MEM_TRML_INTERRUPT, ~0x1f);
Felix Heldf9b826a2018-07-30 17:56:52 +02003018
3019 FOR_ALL_CHANNELS
Angel Pons7c49cb82020-03-16 23:17:32 +01003020 MCHBAR32_AND_OR(TC_RFP_ch(channel), ~(3 << 16), 1 << 16);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003021
Angel Ponsdc5539f2020-11-12 12:44:25 +01003022 MCHBAR32_OR(MC_INIT_STATE_G, 1 << 0);
3023 MCHBAR32_OR(MC_INIT_STATE_G, 1 << 7);
Angel Pons88521882020-01-05 20:21:20 +01003024 MCHBAR32(BANDTIMERS_SNB) = 0xfa;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003025
Angel Pons7c49cb82020-03-16 23:17:32 +01003026 /* Find a populated channel */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003027 FOR_ALL_POPULATED_CHANNELS
3028 break;
3029
Angel Pons88521882020-01-05 20:21:20 +01003030 t1_cycles = (MCHBAR32(TC_ZQCAL_ch(channel)) >> 8) & 0xff;
3031 r32 = MCHBAR32(PM_DLL_CONFIG);
Angel Pons7c49cb82020-03-16 23:17:32 +01003032 if (r32 & (1 << 17))
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003033 t1_cycles += (r32 & 0xfff);
Angel Pons88521882020-01-05 20:21:20 +01003034 t1_cycles += MCHBAR32(TC_SRFTP_ch(channel)) & 0xfff;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003035 t1_ns = t1_cycles * ctrl->tCK / 256 + 544;
Angel Pons7c49cb82020-03-16 23:17:32 +01003036 if (!(r32 & (1 << 17)))
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003037 t1_ns += 500;
3038
Angel Pons88521882020-01-05 20:21:20 +01003039 t2_ns = 10 * ((MCHBAR32(SAPMTIMERS) >> 8) & 0xfff);
Angel Pons891f2bc2020-01-10 01:27:28 +01003040 if (MCHBAR32(SAPMCTL) & 8) {
Angel Pons7c49cb82020-03-16 23:17:32 +01003041 t3_ns = 10 * ((MCHBAR32(BANDTIMERS_IVB) >> 8) & 0xfff);
Angel Pons88521882020-01-05 20:21:20 +01003042 t3_ns += 10 * (MCHBAR32(SAPMTIMERS2_IVB) & 0xff);
Angel Pons891f2bc2020-01-10 01:27:28 +01003043 } else {
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003044 t3_ns = 500;
3045 }
Angel Pons7c49cb82020-03-16 23:17:32 +01003046
3047 /* The graphics driver will use these watermark values */
3048 printk(BIOS_DEBUG, "t123: %d, %d, %d\n", t1_ns, t2_ns, t3_ns);
Angel Ponsdc5539f2020-11-12 12:44:25 +01003049 MCHBAR32_AND_OR(SSKPD, ~0x3f3f3f3f,
Angel Pons7c49cb82020-03-16 23:17:32 +01003050 ((encode_wm(t1_ns) + encode_wm(t2_ns)) << 16) | (encode_wm(t1_ns) << 8) |
3051 ((encode_wm(t3_ns) + encode_wm(t2_ns) + encode_wm(t1_ns)) << 24) | 0x0c);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003052}
3053
Angel Pons88521882020-01-05 20:21:20 +01003054void restore_timings(ramctr_timing *ctrl)
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003055{
3056 int channel, slotrank, lane;
3057
Angel Pons7c49cb82020-03-16 23:17:32 +01003058 FOR_ALL_POPULATED_CHANNELS {
3059 MCHBAR32(TC_RAP_ch(channel)) =
3060 (ctrl->tRRD << 0)
3061 | (ctrl->tRTP << 4)
3062 | (ctrl->tCKE << 8)
3063 | (ctrl->tWTR << 12)
3064 | (ctrl->tFAW << 16)
3065 | (ctrl->tWR << 24)
3066 | (ctrl->cmd_stretch[channel] << 30);
3067 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003068
3069 udelay(1);
3070
3071 FOR_ALL_POPULATED_CHANNELS {
Angel Pons88521882020-01-05 20:21:20 +01003072 wait_for_iosav(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003073 }
3074
3075 FOR_ALL_CHANNELS FOR_ALL_POPULATED_RANKS FOR_ALL_LANES {
Angel Pons88521882020-01-05 20:21:20 +01003076 MCHBAR32(IOSAV_By_BW_MASK_ch(channel, lane)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003077 }
3078
3079 FOR_ALL_POPULATED_CHANNELS
Angel Ponsdc5539f2020-11-12 12:44:25 +01003080 MCHBAR32_OR(TC_RWP_ch(channel), 1 << 27);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003081
3082 FOR_ALL_POPULATED_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +01003083 udelay(1);
Angel Ponsdc5539f2020-11-12 12:44:25 +01003084 MCHBAR32_OR(SCHED_CBIT_ch(channel), 1 << 21);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003085 }
3086
3087 printram("CPE\n");
3088
Angel Pons88521882020-01-05 20:21:20 +01003089 MCHBAR32(GDCRTRAININGMOD) = 0;
3090 MCHBAR32(IOSAV_DC_MASK) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003091
3092 printram("CP5b\n");
3093
3094 FOR_ALL_POPULATED_CHANNELS {
3095 program_timings(ctrl, channel);
3096 }
3097
3098 u32 reg, addr;
3099
Angel Pons7c49cb82020-03-16 23:17:32 +01003100 /* Poll for RCOMP */
3101 while (!(MCHBAR32(RCOMP_TIMER) & (1 << 16)))
3102 ;
3103
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003104 do {
Angel Pons88521882020-01-05 20:21:20 +01003105 reg = MCHBAR32(IOSAV_STATUS_ch(0));
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003106 } while ((reg & 0x14) == 0);
3107
Angel Pons7c49cb82020-03-16 23:17:32 +01003108 /* Set state of memory controller */
Angel Pons88521882020-01-05 20:21:20 +01003109 MCHBAR32(MC_INIT_STATE_G) = 0x116;
Angel Pons7c49cb82020-03-16 23:17:32 +01003110 MCHBAR32(MC_INIT_STATE) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003111
Angel Pons7c49cb82020-03-16 23:17:32 +01003112 /* Wait 500us */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003113 udelay(500);
3114
3115 FOR_ALL_CHANNELS {
Angel Pons7c49cb82020-03-16 23:17:32 +01003116 /* Set valid rank CKE */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003117 reg = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +01003118 reg = (reg & ~0x0f) | ctrl->rankmap[channel];
Angel Pons88521882020-01-05 20:21:20 +01003119 addr = MC_INIT_STATE_ch(channel);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003120 MCHBAR32(addr) = reg;
3121
Angel Pons7c49cb82020-03-16 23:17:32 +01003122 /* Wait 10ns for ranks to settle */
3123 // udelay(0.01);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003124
3125 reg = (reg & ~0xf0) | (ctrl->rankmap[channel] << 4);
3126 MCHBAR32(addr) = reg;
3127
Angel Pons7c49cb82020-03-16 23:17:32 +01003128 /* Write reset using a NOP */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003129 write_reset(ctrl);
3130 }
3131
Angel Pons7c49cb82020-03-16 23:17:32 +01003132 /* MRS commands */
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003133 dram_mrscommands(ctrl);
3134
3135 printram("CP5c\n");
3136
Angel Pons88521882020-01-05 20:21:20 +01003137 MCHBAR32(GDCRTRAININGMOD_ch(0)) = 0;
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003138
3139 FOR_ALL_CHANNELS {
Angel Pons88521882020-01-05 20:21:20 +01003140 MCHBAR32_AND(GDCRCMDDEBUGMUXCFG_Cz_S(channel), ~0x3f000000);
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003141 udelay(2);
3142 }
Patrick Rudolphfd5fa2a2016-11-11 18:22:33 +01003143}