]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/ddr/altera/sequencer.c
ARM: davinci: remove support for cam_enc_4xx
[people/ms/u-boot.git] / drivers / ddr / altera / sequencer.c
CommitLineData
3da42859
DN
1/*
2 * Copyright Altera Corporation (C) 2012-2015
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <common.h>
8#include <asm/io.h>
9#include <asm/arch/sdram.h>
04372fb8 10#include <errno.h>
3da42859 11#include "sequencer.h"
9c76df51 12
3da42859 13static struct socfpga_sdr_rw_load_manager *sdr_rw_load_mgr_regs =
139823ec
MV
14 (struct socfpga_sdr_rw_load_manager *)
15 (SDR_PHYGRP_RWMGRGRP_ADDRESS | 0x800);
3da42859 16static struct socfpga_sdr_rw_load_jump_manager *sdr_rw_load_jump_mgr_regs =
139823ec
MV
17 (struct socfpga_sdr_rw_load_jump_manager *)
18 (SDR_PHYGRP_RWMGRGRP_ADDRESS | 0xC00);
3da42859 19static struct socfpga_sdr_reg_file *sdr_reg_file =
a1c654a8 20 (struct socfpga_sdr_reg_file *)SDR_PHYGRP_REGFILEGRP_ADDRESS;
3da42859 21static struct socfpga_sdr_scc_mgr *sdr_scc_mgr =
139823ec
MV
22 (struct socfpga_sdr_scc_mgr *)
23 (SDR_PHYGRP_SCCGRP_ADDRESS | 0xe00);
3da42859 24static struct socfpga_phy_mgr_cmd *phy_mgr_cmd =
1bc6f14a 25 (struct socfpga_phy_mgr_cmd *)SDR_PHYGRP_PHYMGRGRP_ADDRESS;
3da42859 26static struct socfpga_phy_mgr_cfg *phy_mgr_cfg =
139823ec
MV
27 (struct socfpga_phy_mgr_cfg *)
28 (SDR_PHYGRP_PHYMGRGRP_ADDRESS | 0x40);
3da42859 29static struct socfpga_data_mgr *data_mgr =
c4815f76 30 (struct socfpga_data_mgr *)SDR_PHYGRP_DATAMGRGRP_ADDRESS;
6cb9f167
MV
31static struct socfpga_sdr_ctrl *sdr_ctrl =
32 (struct socfpga_sdr_ctrl *)SDR_CTRLGRP_ADDRESS;
33
d718a26b 34const struct socfpga_sdram_rw_mgr_config *rwcfg;
10c14261 35const struct socfpga_sdram_io_config *iocfg;
042ff2d0 36const struct socfpga_sdram_misc_config *misccfg;
d718a26b 37
3da42859 38#define DELTA_D 1
3da42859
DN
39
40/*
41 * In order to reduce ROM size, most of the selectable calibration steps are
42 * decided at compile time based on the user's calibration mode selection,
43 * as captured by the STATIC_CALIB_STEPS selection below.
44 *
45 * However, to support simulation-time selection of fast simulation mode, where
46 * we skip everything except the bare minimum, we need a few of the steps to
47 * be dynamic. In those cases, we either use the DYNAMIC_CALIB_STEPS for the
48 * check, which is based on the rtl-supplied value, or we dynamically compute
49 * the value to use based on the dynamically-chosen calibration mode
50 */
51
52#define DLEVEL 0
53#define STATIC_IN_RTL_SIM 0
54#define STATIC_SKIP_DELAY_LOOPS 0
55
56#define STATIC_CALIB_STEPS (STATIC_IN_RTL_SIM | CALIB_SKIP_FULL_TEST | \
57 STATIC_SKIP_DELAY_LOOPS)
58
59/* calibration steps requested by the rtl */
5ded7320 60u16 dyn_calib_steps;
3da42859
DN
61
62/*
63 * To make CALIB_SKIP_DELAY_LOOPS a dynamic conditional option
64 * instead of static, we use boolean logic to select between
65 * non-skip and skip values
66 *
67 * The mask is set to include all bits when not-skipping, but is
68 * zero when skipping
69 */
70
5ded7320 71u16 skip_delay_mask; /* mask off bits when skipping/not-skipping */
3da42859
DN
72
73#define SKIP_DELAY_LOOP_VALUE_OR_ZERO(non_skip_value) \
74 ((non_skip_value) & skip_delay_mask)
75
76struct gbl_type *gbl;
77struct param_type *param;
3da42859 78
5ded7320
MV
79static void set_failing_group_stage(u32 group, u32 stage,
80 u32 substage)
3da42859
DN
81{
82 /*
83 * Only set the global stage if there was not been any other
84 * failing group
85 */
86 if (gbl->error_stage == CAL_STAGE_NIL) {
87 gbl->error_substage = substage;
88 gbl->error_stage = stage;
89 gbl->error_group = group;
90 }
91}
92
2c0d2d9c 93static void reg_file_set_group(u16 set_group)
3da42859 94{
2c0d2d9c 95 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xffff0000, set_group << 16);
3da42859
DN
96}
97
2c0d2d9c 98static void reg_file_set_stage(u8 set_stage)
3da42859 99{
2c0d2d9c 100 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xffff, set_stage & 0xff);
3da42859
DN
101}
102
2c0d2d9c 103static void reg_file_set_sub_stage(u8 set_sub_stage)
3da42859 104{
2c0d2d9c
MV
105 set_sub_stage &= 0xff;
106 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xff00, set_sub_stage << 8);
3da42859
DN
107}
108
7c89c2d9
MV
109/**
110 * phy_mgr_initialize() - Initialize PHY Manager
111 *
112 * Initialize PHY Manager.
113 */
9fa9c90e 114static void phy_mgr_initialize(void)
3da42859 115{
7c89c2d9
MV
116 u32 ratio;
117
3da42859 118 debug("%s:%d\n", __func__, __LINE__);
7c89c2d9 119 /* Calibration has control over path to memory */
3da42859
DN
120 /*
121 * In Hard PHY this is a 2-bit control:
122 * 0: AFI Mux Select
123 * 1: DDIO Mux Select
124 */
1273dd9e 125 writel(0x3, &phy_mgr_cfg->mux_sel);
3da42859
DN
126
127 /* USER memory clock is not stable we begin initialization */
1273dd9e 128 writel(0, &phy_mgr_cfg->reset_mem_stbl);
3da42859
DN
129
130 /* USER calibration status all set to zero */
1273dd9e 131 writel(0, &phy_mgr_cfg->cal_status);
3da42859 132
1273dd9e 133 writel(0, &phy_mgr_cfg->cal_debug_info);
3da42859 134
7c89c2d9
MV
135 /* Init params only if we do NOT skip calibration. */
136 if ((dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL)
137 return;
138
1fa0c8c4
MV
139 ratio = rwcfg->mem_dq_per_read_dqs /
140 rwcfg->mem_virtual_groups_per_read_dqs;
7c89c2d9
MV
141 param->read_correct_mask_vg = (1 << ratio) - 1;
142 param->write_correct_mask_vg = (1 << ratio) - 1;
1fa0c8c4
MV
143 param->read_correct_mask = (1 << rwcfg->mem_dq_per_read_dqs) - 1;
144 param->write_correct_mask = (1 << rwcfg->mem_dq_per_write_dqs) - 1;
3da42859
DN
145}
146
080bf64e
MV
147/**
148 * set_rank_and_odt_mask() - Set Rank and ODT mask
149 * @rank: Rank mask
150 * @odt_mode: ODT mode, OFF or READ_WRITE
151 *
152 * Set Rank and ODT mask (On-Die Termination).
153 */
b2dfd100 154static void set_rank_and_odt_mask(const u32 rank, const u32 odt_mode)
3da42859 155{
b2dfd100
MV
156 u32 odt_mask_0 = 0;
157 u32 odt_mask_1 = 0;
158 u32 cs_and_odt_mask;
3da42859 159
b2dfd100
MV
160 if (odt_mode == RW_MGR_ODT_MODE_OFF) {
161 odt_mask_0 = 0x0;
162 odt_mask_1 = 0x0;
163 } else { /* RW_MGR_ODT_MODE_READ_WRITE */
1fa0c8c4 164 switch (rwcfg->mem_number_of_ranks) {
287cdf6b
MV
165 case 1: /* 1 Rank */
166 /* Read: ODT = 0 ; Write: ODT = 1 */
3da42859
DN
167 odt_mask_0 = 0x0;
168 odt_mask_1 = 0x1;
287cdf6b
MV
169 break;
170 case 2: /* 2 Ranks */
1fa0c8c4 171 if (rwcfg->mem_number_of_cs_per_dimm == 1) {
080bf64e
MV
172 /*
173 * - Dual-Slot , Single-Rank (1 CS per DIMM)
174 * OR
175 * - RDIMM, 4 total CS (2 CS per DIMM, 2 DIMM)
176 *
177 * Since MEM_NUMBER_OF_RANKS is 2, they
178 * are both single rank with 2 CS each
179 * (special for RDIMM).
180 *
3da42859
DN
181 * Read: Turn on ODT on the opposite rank
182 * Write: Turn on ODT on all ranks
183 */
184 odt_mask_0 = 0x3 & ~(1 << rank);
185 odt_mask_1 = 0x3;
186 } else {
187 /*
080bf64e
MV
188 * - Single-Slot , Dual-Rank (2 CS per DIMM)
189 *
190 * Read: Turn on ODT off on all ranks
191 * Write: Turn on ODT on active rank
3da42859
DN
192 */
193 odt_mask_0 = 0x0;
194 odt_mask_1 = 0x3 & (1 << rank);
195 }
287cdf6b
MV
196 break;
197 case 4: /* 4 Ranks */
198 /* Read:
3da42859 199 * ----------+-----------------------+
3da42859
DN
200 * | ODT |
201 * Read From +-----------------------+
202 * Rank | 3 | 2 | 1 | 0 |
203 * ----------+-----+-----+-----+-----+
204 * 0 | 0 | 1 | 0 | 0 |
205 * 1 | 1 | 0 | 0 | 0 |
206 * 2 | 0 | 0 | 0 | 1 |
207 * 3 | 0 | 0 | 1 | 0 |
208 * ----------+-----+-----+-----+-----+
209 *
210 * Write:
211 * ----------+-----------------------+
3da42859
DN
212 * | ODT |
213 * Write To +-----------------------+
214 * Rank | 3 | 2 | 1 | 0 |
215 * ----------+-----+-----+-----+-----+
216 * 0 | 0 | 1 | 0 | 1 |
217 * 1 | 1 | 0 | 1 | 0 |
218 * 2 | 0 | 1 | 0 | 1 |
219 * 3 | 1 | 0 | 1 | 0 |
220 * ----------+-----+-----+-----+-----+
221 */
222 switch (rank) {
223 case 0:
224 odt_mask_0 = 0x4;
225 odt_mask_1 = 0x5;
226 break;
227 case 1:
228 odt_mask_0 = 0x8;
229 odt_mask_1 = 0xA;
230 break;
231 case 2:
232 odt_mask_0 = 0x1;
233 odt_mask_1 = 0x5;
234 break;
235 case 3:
236 odt_mask_0 = 0x2;
237 odt_mask_1 = 0xA;
238 break;
239 }
287cdf6b 240 break;
3da42859 241 }
3da42859
DN
242 }
243
b2dfd100
MV
244 cs_and_odt_mask = (0xFF & ~(1 << rank)) |
245 ((0xFF & odt_mask_0) << 8) |
246 ((0xFF & odt_mask_1) << 16);
1273dd9e
MV
247 writel(cs_and_odt_mask, SDR_PHYGRP_RWMGRGRP_ADDRESS |
248 RW_MGR_SET_CS_AND_ODT_MASK_OFFSET);
3da42859
DN
249}
250
c76976d9
MV
251/**
252 * scc_mgr_set() - Set SCC Manager register
253 * @off: Base offset in SCC Manager space
254 * @grp: Read/Write group
255 * @val: Value to be set
256 *
257 * This function sets the SCC Manager (Scan Chain Control Manager) register.
258 */
259static void scc_mgr_set(u32 off, u32 grp, u32 val)
3da42859 260{
c76976d9
MV
261 writel(val, SDR_PHYGRP_SCCGRP_ADDRESS | off | (grp << 2));
262}
3da42859 263
e893f4dc
MV
264/**
265 * scc_mgr_initialize() - Initialize SCC Manager registers
266 *
267 * Initialize SCC Manager registers.
268 */
c76976d9
MV
269static void scc_mgr_initialize(void)
270{
3da42859 271 /*
e893f4dc
MV
272 * Clear register file for HPS. 16 (2^4) is the size of the
273 * full register file in the scc mgr:
274 * RFILE_DEPTH = 1 + log2(MEM_DQ_PER_DQS + 1 + MEM_DM_PER_DQS +
275 * MEM_IF_READ_DQS_WIDTH - 1);
3da42859 276 */
c76976d9 277 int i;
e893f4dc 278
3da42859 279 for (i = 0; i < 16; i++) {
7ac40d25 280 debug_cond(DLEVEL == 1, "%s:%d: Clearing SCC RFILE index %u\n",
3da42859 281 __func__, __LINE__, i);
c76976d9 282 scc_mgr_set(SCC_MGR_HHP_RFILE_OFFSET, 0, i);
3da42859
DN
283 }
284}
285
5ded7320 286static void scc_mgr_set_dqdqs_output_phase(u32 write_group, u32 phase)
5ff825b8 287{
c76976d9 288 scc_mgr_set(SCC_MGR_DQDQS_OUT_PHASE_OFFSET, write_group, phase);
5ff825b8
MV
289}
290
5ded7320 291static void scc_mgr_set_dqs_bus_in_delay(u32 read_group, u32 delay)
3da42859 292{
c76976d9 293 scc_mgr_set(SCC_MGR_DQS_IN_DELAY_OFFSET, read_group, delay);
3da42859
DN
294}
295
5ded7320 296static void scc_mgr_set_dqs_en_phase(u32 read_group, u32 phase)
5ff825b8 297{
c76976d9 298 scc_mgr_set(SCC_MGR_DQS_EN_PHASE_OFFSET, read_group, phase);
5ff825b8
MV
299}
300
5ded7320 301static void scc_mgr_set_dqs_en_delay(u32 read_group, u32 delay)
5ff825b8 302{
c76976d9 303 scc_mgr_set(SCC_MGR_DQS_EN_DELAY_OFFSET, read_group, delay);
5ff825b8
MV
304}
305
5ded7320 306static void scc_mgr_set_dqs_io_in_delay(u32 delay)
3da42859 307{
1fa0c8c4 308 scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, rwcfg->mem_dq_per_write_dqs,
c76976d9 309 delay);
3da42859
DN
310}
311
5ded7320 312static void scc_mgr_set_dq_in_delay(u32 dq_in_group, u32 delay)
3da42859 313{
c76976d9 314 scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, dq_in_group, delay);
5ff825b8
MV
315}
316
5ded7320 317static void scc_mgr_set_dq_out1_delay(u32 dq_in_group, u32 delay)
5ff825b8 318{
c76976d9 319 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET, dq_in_group, delay);
5ff825b8
MV
320}
321
5ded7320 322static void scc_mgr_set_dqs_out1_delay(u32 delay)
5ff825b8 323{
1fa0c8c4 324 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET, rwcfg->mem_dq_per_write_dqs,
c76976d9 325 delay);
5ff825b8
MV
326}
327
5ded7320 328static void scc_mgr_set_dm_out1_delay(u32 dm, u32 delay)
5ff825b8 329{
c76976d9 330 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET,
1fa0c8c4 331 rwcfg->mem_dq_per_write_dqs + 1 + dm,
c76976d9 332 delay);
5ff825b8
MV
333}
334
335/* load up dqs config settings */
5ded7320 336static void scc_mgr_load_dqs(u32 dqs)
5ff825b8
MV
337{
338 writel(dqs, &sdr_scc_mgr->dqs_ena);
339}
340
341/* load up dqs io config settings */
342static void scc_mgr_load_dqs_io(void)
343{
344 writel(0, &sdr_scc_mgr->dqs_io_ena);
345}
346
347/* load up dq config settings */
5ded7320 348static void scc_mgr_load_dq(u32 dq_in_group)
5ff825b8
MV
349{
350 writel(dq_in_group, &sdr_scc_mgr->dq_ena);
351}
352
353/* load up dm config settings */
5ded7320 354static void scc_mgr_load_dm(u32 dm)
5ff825b8
MV
355{
356 writel(dm, &sdr_scc_mgr->dm_ena);
3da42859
DN
357}
358
0b69b807
MV
359/**
360 * scc_mgr_set_all_ranks() - Set SCC Manager register for all ranks
361 * @off: Base offset in SCC Manager space
362 * @grp: Read/Write group
363 * @val: Value to be set
364 * @update: If non-zero, trigger SCC Manager update for all ranks
365 *
366 * This function sets the SCC Manager (Scan Chain Control Manager) register
367 * and optionally triggers the SCC update for all ranks.
368 */
369static void scc_mgr_set_all_ranks(const u32 off, const u32 grp, const u32 val,
370 const int update)
3da42859 371{
0b69b807 372 u32 r;
3da42859 373
1fa0c8c4 374 for (r = 0; r < rwcfg->mem_number_of_ranks;
3da42859 375 r += NUM_RANKS_PER_SHADOW_REG) {
0b69b807
MV
376 scc_mgr_set(off, grp, val);
377
378 if (update || (r == 0)) {
379 writel(grp, &sdr_scc_mgr->dqs_ena);
1273dd9e 380 writel(0, &sdr_scc_mgr->update);
3da42859
DN
381 }
382 }
383}
384
0b69b807
MV
385static void scc_mgr_set_dqs_en_phase_all_ranks(u32 read_group, u32 phase)
386{
387 /*
388 * USER although the h/w doesn't support different phases per
389 * shadow register, for simplicity our scc manager modeling
390 * keeps different phase settings per shadow reg, and it's
391 * important for us to keep them in sync to match h/w.
392 * for efficiency, the scan chain update should occur only
393 * once to sr0.
394 */
395 scc_mgr_set_all_ranks(SCC_MGR_DQS_EN_PHASE_OFFSET,
396 read_group, phase, 0);
397}
398
5ded7320
MV
399static void scc_mgr_set_dqdqs_output_phase_all_ranks(u32 write_group,
400 u32 phase)
3da42859 401{
0b69b807
MV
402 /*
403 * USER although the h/w doesn't support different phases per
404 * shadow register, for simplicity our scc manager modeling
405 * keeps different phase settings per shadow reg, and it's
406 * important for us to keep them in sync to match h/w.
407 * for efficiency, the scan chain update should occur only
408 * once to sr0.
409 */
410 scc_mgr_set_all_ranks(SCC_MGR_DQDQS_OUT_PHASE_OFFSET,
411 write_group, phase, 0);
3da42859
DN
412}
413
5ded7320
MV
414static void scc_mgr_set_dqs_en_delay_all_ranks(u32 read_group,
415 u32 delay)
3da42859 416{
3da42859
DN
417 /*
418 * In shadow register mode, the T11 settings are stored in
419 * registers in the core, which are updated by the DQS_ENA
420 * signals. Not issuing the SCC_MGR_UPD command allows us to
421 * save lots of rank switching overhead, by calling
422 * select_shadow_regs_for_update with update_scan_chains
423 * set to 0.
424 */
0b69b807
MV
425 scc_mgr_set_all_ranks(SCC_MGR_DQS_EN_DELAY_OFFSET,
426 read_group, delay, 1);
1273dd9e 427 writel(0, &sdr_scc_mgr->update);
3da42859
DN
428}
429
5be355c1
MV
430/**
431 * scc_mgr_set_oct_out1_delay() - Set OCT output delay
432 * @write_group: Write group
433 * @delay: Delay value
434 *
435 * This function sets the OCT output delay in SCC manager.
436 */
437static void scc_mgr_set_oct_out1_delay(const u32 write_group, const u32 delay)
3da42859 438{
1fa0c8c4
MV
439 const int ratio = rwcfg->mem_if_read_dqs_width /
440 rwcfg->mem_if_write_dqs_width;
5be355c1
MV
441 const int base = write_group * ratio;
442 int i;
3da42859
DN
443 /*
444 * Load the setting in the SCC manager
445 * Although OCT affects only write data, the OCT delay is controlled
446 * by the DQS logic block which is instantiated once per read group.
447 * For protocols where a write group consists of multiple read groups,
448 * the setting must be set multiple times.
449 */
5be355c1
MV
450 for (i = 0; i < ratio; i++)
451 scc_mgr_set(SCC_MGR_OCT_OUT1_DELAY_OFFSET, base + i, delay);
3da42859
DN
452}
453
37a37ca7
MV
454/**
455 * scc_mgr_set_hhp_extras() - Set HHP extras.
456 *
457 * Load the fixed setting in the SCC manager HHP extras.
458 */
3da42859
DN
459static void scc_mgr_set_hhp_extras(void)
460{
461 /*
462 * Load the fixed setting in the SCC manager
37a37ca7
MV
463 * bits: 0:0 = 1'b1 - DQS bypass
464 * bits: 1:1 = 1'b1 - DQ bypass
465 * bits: 4:2 = 3'b001 - rfifo_mode
466 * bits: 6:5 = 2'b01 - rfifo clock_select
467 * bits: 7:7 = 1'b0 - separate gating from ungating setting
468 * bits: 8:8 = 1'b0 - separate OE from Output delay setting
3da42859 469 */
37a37ca7
MV
470 const u32 value = (0 << 8) | (0 << 7) | (1 << 5) |
471 (1 << 2) | (1 << 1) | (1 << 0);
472 const u32 addr = SDR_PHYGRP_SCCGRP_ADDRESS |
473 SCC_MGR_HHP_GLOBALS_OFFSET |
474 SCC_MGR_HHP_EXTRAS_OFFSET;
475
476 debug_cond(DLEVEL == 1, "%s:%d Setting HHP Extras\n",
477 __func__, __LINE__);
478 writel(value, addr);
479 debug_cond(DLEVEL == 1, "%s:%d Done Setting HHP Extras\n",
480 __func__, __LINE__);
3da42859
DN
481}
482
f42af35b
MV
483/**
484 * scc_mgr_zero_all() - Zero all DQS config
485 *
486 * Zero all DQS config.
3da42859
DN
487 */
488static void scc_mgr_zero_all(void)
489{
f42af35b 490 int i, r;
3da42859
DN
491
492 /*
493 * USER Zero all DQS config settings, across all groups and all
494 * shadow registers
495 */
1fa0c8c4 496 for (r = 0; r < rwcfg->mem_number_of_ranks;
f42af35b 497 r += NUM_RANKS_PER_SHADOW_REG) {
1fa0c8c4 498 for (i = 0; i < rwcfg->mem_if_read_dqs_width; i++) {
3da42859
DN
499 /*
500 * The phases actually don't exist on a per-rank basis,
501 * but there's no harm updating them several times, so
502 * let's keep the code simple.
503 */
160695d8 504 scc_mgr_set_dqs_bus_in_delay(i, iocfg->dqs_in_reserve);
3da42859
DN
505 scc_mgr_set_dqs_en_phase(i, 0);
506 scc_mgr_set_dqs_en_delay(i, 0);
507 }
508
1fa0c8c4 509 for (i = 0; i < rwcfg->mem_if_write_dqs_width; i++) {
3da42859 510 scc_mgr_set_dqdqs_output_phase(i, 0);
f42af35b 511 /* Arria V/Cyclone V don't have out2. */
160695d8 512 scc_mgr_set_oct_out1_delay(i, iocfg->dqs_out_reserve);
3da42859
DN
513 }
514 }
515
f42af35b 516 /* Multicast to all DQS group enables. */
1273dd9e
MV
517 writel(0xff, &sdr_scc_mgr->dqs_ena);
518 writel(0, &sdr_scc_mgr->update);
3da42859
DN
519}
520
c5c5f537
MV
521/**
522 * scc_set_bypass_mode() - Set bypass mode and trigger SCC update
523 * @write_group: Write group
524 *
525 * Set bypass mode and trigger SCC update.
526 */
527static void scc_set_bypass_mode(const u32 write_group)
3da42859 528{
c5c5f537 529 /* Multicast to all DQ enables. */
1273dd9e
MV
530 writel(0xff, &sdr_scc_mgr->dq_ena);
531 writel(0xff, &sdr_scc_mgr->dm_ena);
3da42859 532
c5c5f537 533 /* Update current DQS IO enable. */
1273dd9e 534 writel(0, &sdr_scc_mgr->dqs_io_ena);
3da42859 535
c5c5f537 536 /* Update the DQS logic. */
1273dd9e 537 writel(write_group, &sdr_scc_mgr->dqs_ena);
3da42859 538
c5c5f537 539 /* Hit update. */
1273dd9e 540 writel(0, &sdr_scc_mgr->update);
3da42859
DN
541}
542
5e837896
MV
543/**
544 * scc_mgr_load_dqs_for_write_group() - Load DQS settings for Write Group
545 * @write_group: Write group
546 *
547 * Load DQS settings for Write Group, do not trigger SCC update.
548 */
549static void scc_mgr_load_dqs_for_write_group(const u32 write_group)
5ff825b8 550{
1fa0c8c4
MV
551 const int ratio = rwcfg->mem_if_read_dqs_width /
552 rwcfg->mem_if_write_dqs_width;
5e837896
MV
553 const int base = write_group * ratio;
554 int i;
5ff825b8 555 /*
5e837896 556 * Load the setting in the SCC manager
5ff825b8
MV
557 * Although OCT affects only write data, the OCT delay is controlled
558 * by the DQS logic block which is instantiated once per read group.
559 * For protocols where a write group consists of multiple read groups,
5e837896 560 * the setting must be set multiple times.
5ff825b8 561 */
5e837896
MV
562 for (i = 0; i < ratio; i++)
563 writel(base + i, &sdr_scc_mgr->dqs_ena);
5ff825b8
MV
564}
565
d41ea93a
MV
566/**
567 * scc_mgr_zero_group() - Zero all configs for a group
568 *
569 * Zero DQ, DM, DQS and OCT configs for a group.
570 */
571static void scc_mgr_zero_group(const u32 write_group, const int out_only)
3da42859 572{
d41ea93a 573 int i, r;
3da42859 574
1fa0c8c4 575 for (r = 0; r < rwcfg->mem_number_of_ranks;
d41ea93a
MV
576 r += NUM_RANKS_PER_SHADOW_REG) {
577 /* Zero all DQ config settings. */
1fa0c8c4 578 for (i = 0; i < rwcfg->mem_dq_per_write_dqs; i++) {
07aee5bd 579 scc_mgr_set_dq_out1_delay(i, 0);
3da42859 580 if (!out_only)
07aee5bd 581 scc_mgr_set_dq_in_delay(i, 0);
3da42859
DN
582 }
583
d41ea93a 584 /* Multicast to all DQ enables. */
1273dd9e 585 writel(0xff, &sdr_scc_mgr->dq_ena);
3da42859 586
d41ea93a
MV
587 /* Zero all DM config settings. */
588 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++)
07aee5bd 589 scc_mgr_set_dm_out1_delay(i, 0);
3da42859 590
d41ea93a 591 /* Multicast to all DM enables. */
1273dd9e 592 writel(0xff, &sdr_scc_mgr->dm_ena);
3da42859 593
d41ea93a 594 /* Zero all DQS IO settings. */
3da42859 595 if (!out_only)
32675249 596 scc_mgr_set_dqs_io_in_delay(0);
d41ea93a
MV
597
598 /* Arria V/Cyclone V don't have out2. */
160695d8
MV
599 scc_mgr_set_dqs_out1_delay(iocfg->dqs_out_reserve);
600 scc_mgr_set_oct_out1_delay(write_group, iocfg->dqs_out_reserve);
3da42859
DN
601 scc_mgr_load_dqs_for_write_group(write_group);
602
d41ea93a 603 /* Multicast to all DQS IO enables (only 1 in total). */
1273dd9e 604 writel(0, &sdr_scc_mgr->dqs_io_ena);
3da42859 605
d41ea93a 606 /* Hit update to zero everything. */
1273dd9e 607 writel(0, &sdr_scc_mgr->update);
3da42859
DN
608 }
609}
610
3da42859
DN
611/*
612 * apply and load a particular input delay for the DQ pins in a group
613 * group_bgn is the index of the first dq pin (in the write group)
614 */
5ded7320 615static void scc_mgr_apply_group_dq_in_delay(u32 group_bgn, u32 delay)
3da42859 616{
5ded7320 617 u32 i, p;
3da42859 618
1fa0c8c4 619 for (i = 0, p = group_bgn; i < rwcfg->mem_dq_per_read_dqs; i++, p++) {
07aee5bd 620 scc_mgr_set_dq_in_delay(p, delay);
3da42859
DN
621 scc_mgr_load_dq(p);
622 }
623}
624
300c2e62
MV
625/**
626 * scc_mgr_apply_group_dq_out1_delay() - Apply and load an output delay for the DQ pins in a group
627 * @delay: Delay value
628 *
629 * Apply and load a particular output delay for the DQ pins in a group.
630 */
631static void scc_mgr_apply_group_dq_out1_delay(const u32 delay)
3da42859 632{
300c2e62 633 int i;
3da42859 634
1fa0c8c4 635 for (i = 0; i < rwcfg->mem_dq_per_write_dqs; i++) {
300c2e62 636 scc_mgr_set_dq_out1_delay(i, delay);
3da42859
DN
637 scc_mgr_load_dq(i);
638 }
639}
640
641/* apply and load a particular output delay for the DM pins in a group */
5ded7320 642static void scc_mgr_apply_group_dm_out1_delay(u32 delay1)
3da42859 643{
5ded7320 644 u32 i;
3da42859
DN
645
646 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++) {
07aee5bd 647 scc_mgr_set_dm_out1_delay(i, delay1);
3da42859
DN
648 scc_mgr_load_dm(i);
649 }
650}
651
652
653/* apply and load delay on both DQS and OCT out1 */
5ded7320
MV
654static void scc_mgr_apply_group_dqs_io_and_oct_out1(u32 write_group,
655 u32 delay)
3da42859 656{
32675249 657 scc_mgr_set_dqs_out1_delay(delay);
3da42859
DN
658 scc_mgr_load_dqs_io();
659
660 scc_mgr_set_oct_out1_delay(write_group, delay);
661 scc_mgr_load_dqs_for_write_group(write_group);
662}
663
5cb1b508
MV
664/**
665 * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output side: DQ, DM, DQS, OCT
666 * @write_group: Write group
667 * @delay: Delay value
668 *
669 * Apply a delay to the entire output side: DQ, DM, DQS, OCT.
670 */
8eccde3e 671static void scc_mgr_apply_group_all_out_delay_add(const u32 write_group,
8eccde3e
MV
672 const u32 delay)
673{
674 u32 i, new_delay;
3da42859 675
8eccde3e 676 /* DQ shift */
1fa0c8c4 677 for (i = 0; i < rwcfg->mem_dq_per_write_dqs; i++)
3da42859 678 scc_mgr_load_dq(i);
3da42859 679
8eccde3e
MV
680 /* DM shift */
681 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++)
3da42859 682 scc_mgr_load_dm(i);
3da42859 683
5cb1b508
MV
684 /* DQS shift */
685 new_delay = READ_SCC_DQS_IO_OUT2_DELAY + delay;
160695d8 686 if (new_delay > iocfg->io_out2_delay_max) {
5cb1b508
MV
687 debug_cond(DLEVEL == 1,
688 "%s:%d (%u, %u) DQS: %u > %d; adding %u to OUT1\n",
689 __func__, __LINE__, write_group, delay, new_delay,
160695d8
MV
690 iocfg->io_out2_delay_max,
691 new_delay - iocfg->io_out2_delay_max);
692 new_delay -= iocfg->io_out2_delay_max;
5cb1b508 693 scc_mgr_set_dqs_out1_delay(new_delay);
3da42859
DN
694 }
695
696 scc_mgr_load_dqs_io();
697
5cb1b508
MV
698 /* OCT shift */
699 new_delay = READ_SCC_OCT_OUT2_DELAY + delay;
160695d8 700 if (new_delay > iocfg->io_out2_delay_max) {
5cb1b508
MV
701 debug_cond(DLEVEL == 1,
702 "%s:%d (%u, %u) DQS: %u > %d; adding %u to OUT1\n",
703 __func__, __LINE__, write_group, delay,
160695d8
MV
704 new_delay, iocfg->io_out2_delay_max,
705 new_delay - iocfg->io_out2_delay_max);
706 new_delay -= iocfg->io_out2_delay_max;
5cb1b508 707 scc_mgr_set_oct_out1_delay(write_group, new_delay);
3da42859
DN
708 }
709
710 scc_mgr_load_dqs_for_write_group(write_group);
711}
712
f51a7d35
MV
713/**
714 * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output side to all ranks
715 * @write_group: Write group
716 * @delay: Delay value
717 *
718 * Apply a delay to the entire output side (DQ, DM, DQS, OCT) to all ranks.
3da42859 719 */
f51a7d35
MV
720static void
721scc_mgr_apply_group_all_out_delay_add_all_ranks(const u32 write_group,
722 const u32 delay)
3da42859 723{
f51a7d35 724 int r;
3da42859 725
1fa0c8c4 726 for (r = 0; r < rwcfg->mem_number_of_ranks;
f51a7d35 727 r += NUM_RANKS_PER_SHADOW_REG) {
5cb1b508 728 scc_mgr_apply_group_all_out_delay_add(write_group, delay);
1273dd9e 729 writel(0, &sdr_scc_mgr->update);
3da42859
DN
730 }
731}
732
f936f94f
MV
733/**
734 * set_jump_as_return() - Return instruction optimization
735 *
736 * Optimization used to recover some slots in ddr3 inst_rom could be
737 * applied to other protocols if we wanted to
738 */
3da42859
DN
739static void set_jump_as_return(void)
740{
3da42859 741 /*
f936f94f 742 * To save space, we replace return with jump to special shared
3da42859 743 * RETURN instruction so we set the counter to large value so that
f936f94f 744 * we always jump.
3da42859 745 */
1273dd9e 746 writel(0xff, &sdr_rw_load_mgr_regs->load_cntr0);
1fa0c8c4 747 writel(rwcfg->rreturn, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
3da42859
DN
748}
749
3de9622e
MV
750/**
751 * delay_for_n_mem_clocks() - Delay for N memory clocks
752 * @clocks: Length of the delay
753 *
754 * Delay for N memory clocks.
3da42859 755 */
90a584b7 756static void delay_for_n_mem_clocks(const u32 clocks)
3da42859 757{
90a584b7 758 u32 afi_clocks;
6a39be6c
MV
759 u16 c_loop;
760 u8 inner;
761 u8 outer;
3da42859
DN
762
763 debug("%s:%d: clocks=%u ... start\n", __func__, __LINE__, clocks);
764
cbcaf460 765 /* Scale (rounding up) to get afi clocks. */
96fd4362 766 afi_clocks = DIV_ROUND_UP(clocks, misccfg->afi_rate_ratio);
cbcaf460
MV
767 if (afi_clocks) /* Temporary underflow protection */
768 afi_clocks--;
3da42859
DN
769
770 /*
90a584b7
MV
771 * Note, we don't bother accounting for being off a little
772 * bit because of a few extra instructions in outer loops.
773 * Note, the loops have a test at the end, and do the test
774 * before the decrement, and so always perform the loop
3da42859
DN
775 * 1 time more than the counter value
776 */
6a39be6c
MV
777 c_loop = afi_clocks >> 16;
778 outer = c_loop ? 0xff : (afi_clocks >> 8);
779 inner = outer ? 0xff : afi_clocks;
3da42859
DN
780
781 /*
782 * rom instructions are structured as follows:
783 *
784 * IDLE_LOOP2: jnz cntr0, TARGET_A
785 * IDLE_LOOP1: jnz cntr1, TARGET_B
786 * return
787 *
788 * so, when doing nested loops, TARGET_A is set to IDLE_LOOP2, and
789 * TARGET_B is set to IDLE_LOOP2 as well
790 *
791 * if we have no outer loop, though, then we can use IDLE_LOOP1 only,
792 * and set TARGET_B to IDLE_LOOP1 and we skip IDLE_LOOP2 entirely
793 *
794 * a little confusing, but it helps save precious space in the inst_rom
795 * and sequencer rom and keeps the delays more accurate and reduces
796 * overhead
797 */
cbcaf460 798 if (afi_clocks < 0x100) {
1273dd9e 799 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(inner),
139823ec 800 &sdr_rw_load_mgr_regs->load_cntr1);
3da42859 801
1fa0c8c4 802 writel(rwcfg->idle_loop1,
139823ec 803 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
3da42859 804
1fa0c8c4 805 writel(rwcfg->idle_loop1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1273dd9e 806 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
3da42859 807 } else {
1273dd9e 808 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(inner),
139823ec 809 &sdr_rw_load_mgr_regs->load_cntr0);
3da42859 810
1273dd9e 811 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(outer),
139823ec 812 &sdr_rw_load_mgr_regs->load_cntr1);
3da42859 813
1fa0c8c4 814 writel(rwcfg->idle_loop2,
139823ec 815 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
3da42859 816
1fa0c8c4 817 writel(rwcfg->idle_loop2,
139823ec 818 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
3da42859 819
0c1b81bd 820 do {
1fa0c8c4 821 writel(rwcfg->idle_loop2,
139823ec
MV
822 SDR_PHYGRP_RWMGRGRP_ADDRESS |
823 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
0c1b81bd 824 } while (c_loop-- != 0);
3da42859
DN
825 }
826 debug("%s:%d clocks=%u ... end\n", __func__, __LINE__, clocks);
827}
828
944fe719
MV
829/**
830 * rw_mgr_mem_init_load_regs() - Load instruction registers
831 * @cntr0: Counter 0 value
832 * @cntr1: Counter 1 value
833 * @cntr2: Counter 2 value
834 * @jump: Jump instruction value
835 *
836 * Load instruction registers.
837 */
838static void rw_mgr_mem_init_load_regs(u32 cntr0, u32 cntr1, u32 cntr2, u32 jump)
839{
5ded7320 840 u32 grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
944fe719
MV
841 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
842
843 /* Load counters */
844 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr0),
845 &sdr_rw_load_mgr_regs->load_cntr0);
846 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr1),
847 &sdr_rw_load_mgr_regs->load_cntr1);
848 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr2),
849 &sdr_rw_load_mgr_regs->load_cntr2);
850
851 /* Load jump address */
852 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
853 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add1);
854 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add2);
855
856 /* Execute count instruction */
857 writel(jump, grpaddr);
858}
859
ecd2334a
MV
860/**
861 * rw_mgr_mem_load_user() - Load user calibration values
862 * @fin1: Final instruction 1
863 * @fin2: Final instruction 2
864 * @precharge: If 1, precharge the banks at the end
865 *
866 * Load user calibration values and optionally precharge the banks.
867 */
868static void rw_mgr_mem_load_user(const u32 fin1, const u32 fin2,
869 const int precharge)
3da42859 870{
ecd2334a
MV
871 u32 grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
872 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
873 u32 r;
874
1fa0c8c4 875 for (r = 0; r < rwcfg->mem_number_of_ranks; r++) {
ecd2334a
MV
876 /* set rank */
877 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_OFF);
878
879 /* precharge all banks ... */
880 if (precharge)
1fa0c8c4 881 writel(rwcfg->precharge_all, grpaddr);
3da42859 882
ecd2334a
MV
883 /*
884 * USER Use Mirror-ed commands for odd ranks if address
885 * mirrorring is on
886 */
1fa0c8c4 887 if ((rwcfg->mem_address_mirroring >> r) & 0x1) {
ecd2334a 888 set_jump_as_return();
1fa0c8c4 889 writel(rwcfg->mrs2_mirr, grpaddr);
ecd2334a
MV
890 delay_for_n_mem_clocks(4);
891 set_jump_as_return();
1fa0c8c4 892 writel(rwcfg->mrs3_mirr, grpaddr);
ecd2334a
MV
893 delay_for_n_mem_clocks(4);
894 set_jump_as_return();
1fa0c8c4 895 writel(rwcfg->mrs1_mirr, grpaddr);
ecd2334a
MV
896 delay_for_n_mem_clocks(4);
897 set_jump_as_return();
898 writel(fin1, grpaddr);
899 } else {
900 set_jump_as_return();
1fa0c8c4 901 writel(rwcfg->mrs2, grpaddr);
ecd2334a
MV
902 delay_for_n_mem_clocks(4);
903 set_jump_as_return();
1fa0c8c4 904 writel(rwcfg->mrs3, grpaddr);
ecd2334a
MV
905 delay_for_n_mem_clocks(4);
906 set_jump_as_return();
1fa0c8c4 907 writel(rwcfg->mrs1, grpaddr);
ecd2334a
MV
908 set_jump_as_return();
909 writel(fin2, grpaddr);
910 }
911
912 if (precharge)
913 continue;
914
915 set_jump_as_return();
1fa0c8c4 916 writel(rwcfg->zqcl, grpaddr);
ecd2334a
MV
917
918 /* tZQinit = tDLLK = 512 ck cycles */
919 delay_for_n_mem_clocks(512);
920 }
921}
922
8e9d7d04
MV
923/**
924 * rw_mgr_mem_initialize() - Initialize RW Manager
925 *
926 * Initialize RW Manager.
927 */
ecd2334a
MV
928static void rw_mgr_mem_initialize(void)
929{
3da42859
DN
930 debug("%s:%d\n", __func__, __LINE__);
931
932 /* The reset / cke part of initialization is broadcasted to all ranks */
1273dd9e
MV
933 writel(RW_MGR_RANK_ALL, SDR_PHYGRP_RWMGRGRP_ADDRESS |
934 RW_MGR_SET_CS_AND_ODT_MASK_OFFSET);
3da42859
DN
935
936 /*
937 * Here's how you load register for a loop
938 * Counters are located @ 0x800
939 * Jump address are located @ 0xC00
940 * For both, registers 0 to 3 are selected using bits 3 and 2, like
941 * in 0x800, 0x804, 0x808, 0x80C and 0xC00, 0xC04, 0xC08, 0xC0C
942 * I know this ain't pretty, but Avalon bus throws away the 2 least
943 * significant bits
944 */
945
8e9d7d04 946 /* Start with memory RESET activated */
3da42859
DN
947
948 /* tINIT = 200us */
949
950 /*
951 * 200us @ 266MHz (3.75 ns) ~ 54000 clock cycles
952 * If a and b are the number of iteration in 2 nested loops
953 * it takes the following number of cycles to complete the operation:
954 * number_of_cycles = ((2 + n) * a + 2) * b
955 * where n is the number of instruction in the inner loop
956 * One possible solution is n = 0 , a = 256 , b = 106 => a = FF,
957 * b = 6A
958 */
139823ec
MV
959 rw_mgr_mem_init_load_regs(misccfg->tinit_cntr0_val,
960 misccfg->tinit_cntr1_val,
96fd4362 961 misccfg->tinit_cntr2_val,
1fa0c8c4 962 rwcfg->init_reset_0_cke_0);
3da42859 963
8e9d7d04 964 /* Indicate that memory is stable. */
1273dd9e 965 writel(1, &phy_mgr_cfg->reset_mem_stbl);
3da42859
DN
966
967 /*
968 * transition the RESET to high
969 * Wait for 500us
970 */
971
972 /*
973 * 500us @ 266MHz (3.75 ns) ~ 134000 clock cycles
974 * If a and b are the number of iteration in 2 nested loops
975 * it takes the following number of cycles to complete the operation
976 * number_of_cycles = ((2 + n) * a + 2) * b
977 * where n is the number of instruction in the inner loop
978 * One possible solution is n = 2 , a = 131 , b = 256 => a = 83,
979 * b = FF
980 */
139823ec
MV
981 rw_mgr_mem_init_load_regs(misccfg->treset_cntr0_val,
982 misccfg->treset_cntr1_val,
96fd4362 983 misccfg->treset_cntr2_val,
1fa0c8c4 984 rwcfg->init_reset_1_cke_0);
3da42859 985
8e9d7d04 986 /* Bring up clock enable. */
3da42859
DN
987
988 /* tXRP < 250 ck cycles */
989 delay_for_n_mem_clocks(250);
990
1fa0c8c4 991 rw_mgr_mem_load_user(rwcfg->mrs0_dll_reset_mirr, rwcfg->mrs0_dll_reset,
ecd2334a 992 0);
3da42859
DN
993}
994
f1f22f72
MV
995/**
996 * rw_mgr_mem_handoff() - Hand off the memory to user
997 *
998 * At the end of calibration we have to program the user settings in
999 * and hand off the memory to the user.
3da42859
DN
1000 */
1001static void rw_mgr_mem_handoff(void)
1002{
1fa0c8c4 1003 rw_mgr_mem_load_user(rwcfg->mrs0_user_mirr, rwcfg->mrs0_user, 1);
ecd2334a 1004 /*
f1f22f72
MV
1005 * Need to wait tMOD (12CK or 15ns) time before issuing other
1006 * commands, but we will have plenty of NIOS cycles before actual
1007 * handoff so its okay.
ecd2334a 1008 */
3da42859
DN
1009}
1010
8371c2ee
MV
1011/**
1012 * rw_mgr_mem_calibrate_write_test_issue() - Issue write test command
1013 * @group: Write Group
1014 * @use_dm: Use DM
1015 *
1016 * Issue write test command. Two variants are provided, one that just tests
1017 * a write pattern and another that tests datamask functionality.
ad64769c 1018 */
8371c2ee
MV
1019static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
1020 u32 test_dm)
ad64769c 1021{
8371c2ee
MV
1022 const u32 quick_write_mode =
1023 (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES) &&
96fd4362 1024 misccfg->enable_super_quick_calibration;
8371c2ee
MV
1025 u32 mcc_instruction;
1026 u32 rw_wl_nop_cycles;
ad64769c
MV
1027
1028 /*
1029 * Set counter and jump addresses for the right
1030 * number of NOP cycles.
1031 * The number of supported NOP cycles can range from -1 to infinity
1032 * Three different cases are handled:
1033 *
1034 * 1. For a number of NOP cycles greater than 0, the RW Mgr looping
1035 * mechanism will be used to insert the right number of NOPs
1036 *
1037 * 2. For a number of NOP cycles equals to 0, the micro-instruction
1038 * issuing the write command will jump straight to the
1039 * micro-instruction that turns on DQS (for DDRx), or outputs write
1040 * data (for RLD), skipping
1041 * the NOP micro-instruction all together
1042 *
1043 * 3. A number of NOP cycles equal to -1 indicates that DQS must be
1044 * turned on in the same micro-instruction that issues the write
1045 * command. Then we need
1046 * to directly jump to the micro-instruction that sends out the data
1047 *
1048 * NOTE: Implementing this mechanism uses 2 RW Mgr jump-counters
1049 * (2 and 3). One jump-counter (0) is used to perform multiple
1050 * write-read operations.
1051 * one counter left to issue this command in "multiple-group" mode
1052 */
1053
1054 rw_wl_nop_cycles = gbl->rw_wl_nop_cycles;
1055
1056 if (rw_wl_nop_cycles == -1) {
1057 /*
1058 * CNTR 2 - We want to execute the special write operation that
1059 * turns on DQS right away and then skip directly to the
1060 * instruction that sends out the data. We set the counter to a
1061 * large number so that the jump is always taken.
1062 */
1063 writel(0xFF, &sdr_rw_load_mgr_regs->load_cntr2);
1064
1065 /* CNTR 3 - Not used */
1066 if (test_dm) {
1fa0c8c4
MV
1067 mcc_instruction = rwcfg->lfsr_wr_rd_dm_bank_0_wl_1;
1068 writel(rwcfg->lfsr_wr_rd_dm_bank_0_data,
ad64769c 1069 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1fa0c8c4 1070 writel(rwcfg->lfsr_wr_rd_dm_bank_0_nop,
ad64769c
MV
1071 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1072 } else {
1fa0c8c4
MV
1073 mcc_instruction = rwcfg->lfsr_wr_rd_bank_0_wl_1;
1074 writel(rwcfg->lfsr_wr_rd_bank_0_data,
139823ec 1075 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1fa0c8c4 1076 writel(rwcfg->lfsr_wr_rd_bank_0_nop,
139823ec 1077 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
ad64769c
MV
1078 }
1079 } else if (rw_wl_nop_cycles == 0) {
1080 /*
1081 * CNTR 2 - We want to skip the NOP operation and go straight
1082 * to the DQS enable instruction. We set the counter to a large
1083 * number so that the jump is always taken.
1084 */
1085 writel(0xFF, &sdr_rw_load_mgr_regs->load_cntr2);
1086
1087 /* CNTR 3 - Not used */
1088 if (test_dm) {
1fa0c8c4
MV
1089 mcc_instruction = rwcfg->lfsr_wr_rd_dm_bank_0;
1090 writel(rwcfg->lfsr_wr_rd_dm_bank_0_dqs,
ad64769c
MV
1091 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1092 } else {
1fa0c8c4
MV
1093 mcc_instruction = rwcfg->lfsr_wr_rd_bank_0;
1094 writel(rwcfg->lfsr_wr_rd_bank_0_dqs,
139823ec 1095 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
ad64769c
MV
1096 }
1097 } else {
1098 /*
1099 * CNTR 2 - In this case we want to execute the next instruction
1100 * and NOT take the jump. So we set the counter to 0. The jump
1101 * address doesn't count.
1102 */
1103 writel(0x0, &sdr_rw_load_mgr_regs->load_cntr2);
1104 writel(0x0, &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1105
1106 /*
1107 * CNTR 3 - Set the nop counter to the number of cycles we
1108 * need to loop for, minus 1.
1109 */
1110 writel(rw_wl_nop_cycles - 1, &sdr_rw_load_mgr_regs->load_cntr3);
1111 if (test_dm) {
1fa0c8c4
MV
1112 mcc_instruction = rwcfg->lfsr_wr_rd_dm_bank_0;
1113 writel(rwcfg->lfsr_wr_rd_dm_bank_0_nop,
139823ec 1114 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
ad64769c 1115 } else {
1fa0c8c4
MV
1116 mcc_instruction = rwcfg->lfsr_wr_rd_bank_0;
1117 writel(rwcfg->lfsr_wr_rd_bank_0_nop,
139823ec 1118 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
ad64769c
MV
1119 }
1120 }
1121
1122 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1123 RW_MGR_RESET_READ_DATAPATH_OFFSET);
1124
1125 if (quick_write_mode)
1126 writel(0x08, &sdr_rw_load_mgr_regs->load_cntr0);
1127 else
1128 writel(0x40, &sdr_rw_load_mgr_regs->load_cntr0);
1129
1130 writel(mcc_instruction, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
1131
1132 /*
1133 * CNTR 1 - This is used to ensure enough time elapses
1134 * for read data to come back.
1135 */
1136 writel(0x30, &sdr_rw_load_mgr_regs->load_cntr1);
1137
1138 if (test_dm) {
1fa0c8c4 1139 writel(rwcfg->lfsr_wr_rd_dm_bank_0_wait,
139823ec 1140 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
ad64769c 1141 } else {
1fa0c8c4 1142 writel(rwcfg->lfsr_wr_rd_bank_0_wait,
139823ec 1143 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
ad64769c
MV
1144 }
1145
8371c2ee
MV
1146 writel(mcc_instruction, (SDR_PHYGRP_RWMGRGRP_ADDRESS |
1147 RW_MGR_RUN_SINGLE_GROUP_OFFSET) +
1148 (group << 2));
ad64769c
MV
1149}
1150
4a82854b
MV
1151/**
1152 * rw_mgr_mem_calibrate_write_test() - Test writes, check for single/multiple pass
1153 * @rank_bgn: Rank number
1154 * @write_group: Write Group
1155 * @use_dm: Use DM
1156 * @all_correct: All bits must be correct in the mask
1157 * @bit_chk: Resulting bit mask after the test
1158 * @all_ranks: Test all ranks
1159 *
1160 * Test writes, can check for a single bit pass or multiple bit pass.
1161 */
b9452ea0
MV
1162static int
1163rw_mgr_mem_calibrate_write_test(const u32 rank_bgn, const u32 write_group,
1164 const u32 use_dm, const u32 all_correct,
1165 u32 *bit_chk, const u32 all_ranks)
ad64769c 1166{
b9452ea0 1167 const u32 rank_end = all_ranks ?
1fa0c8c4 1168 rwcfg->mem_number_of_ranks :
b9452ea0 1169 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1fa0c8c4
MV
1170 const u32 shift_ratio = rwcfg->mem_dq_per_write_dqs /
1171 rwcfg->mem_virtual_groups_per_write_dqs;
b9452ea0
MV
1172 const u32 correct_mask_vg = param->write_correct_mask_vg;
1173
1174 u32 tmp_bit_chk, base_rw_mgr;
1175 int vg, r;
ad64769c
MV
1176
1177 *bit_chk = param->write_correct_mask;
ad64769c
MV
1178
1179 for (r = rank_bgn; r < rank_end; r++) {
b9452ea0 1180 /* Set rank */
ad64769c
MV
1181 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1182
1183 tmp_bit_chk = 0;
1fa0c8c4 1184 for (vg = rwcfg->mem_virtual_groups_per_write_dqs - 1;
b9452ea0
MV
1185 vg >= 0; vg--) {
1186 /* Reset the FIFOs to get pointers to known state. */
ad64769c
MV
1187 writel(0, &phy_mgr_cmd->fifo_reset);
1188
b9452ea0
MV
1189 rw_mgr_mem_calibrate_write_test_issue(
1190 write_group *
1fa0c8c4 1191 rwcfg->mem_virtual_groups_per_write_dqs + vg,
ad64769c
MV
1192 use_dm);
1193
b9452ea0
MV
1194 base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
1195 tmp_bit_chk <<= shift_ratio;
1196 tmp_bit_chk |= (correct_mask_vg & ~(base_rw_mgr));
ad64769c 1197 }
b9452ea0 1198
ad64769c
MV
1199 *bit_chk &= tmp_bit_chk;
1200 }
1201
b9452ea0 1202 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
ad64769c 1203 if (all_correct) {
b9452ea0
MV
1204 debug_cond(DLEVEL == 2,
1205 "write_test(%u,%u,ALL) : %u == %u => %i\n",
1206 write_group, use_dm, *bit_chk,
1207 param->write_correct_mask,
1208 *bit_chk == param->write_correct_mask);
ad64769c
MV
1209 return *bit_chk == param->write_correct_mask;
1210 } else {
1211 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
b9452ea0
MV
1212 debug_cond(DLEVEL == 2,
1213 "write_test(%u,%u,ONE) : %u != %i => %i\n",
1214 write_group, use_dm, *bit_chk, 0, *bit_chk != 0);
ad64769c
MV
1215 return *bit_chk != 0x00;
1216 }
1217}
1218
d844c7d4
MV
1219/**
1220 * rw_mgr_mem_calibrate_read_test_patterns() - Read back test patterns
1221 * @rank_bgn: Rank number
1222 * @group: Read/Write Group
1223 * @all_ranks: Test all ranks
1224 *
1225 * Performs a guaranteed read on the patterns we are going to use during a
1226 * read test to ensure memory works.
3da42859 1227 */
d844c7d4
MV
1228static int
1229rw_mgr_mem_calibrate_read_test_patterns(const u32 rank_bgn, const u32 group,
1230 const u32 all_ranks)
3da42859 1231{
d844c7d4
MV
1232 const u32 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1233 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
1234 const u32 addr_offset =
1fa0c8c4 1235 (group * rwcfg->mem_virtual_groups_per_read_dqs) << 2;
d844c7d4 1236 const u32 rank_end = all_ranks ?
1fa0c8c4 1237 rwcfg->mem_number_of_ranks :
d844c7d4 1238 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1fa0c8c4
MV
1239 const u32 shift_ratio = rwcfg->mem_dq_per_read_dqs /
1240 rwcfg->mem_virtual_groups_per_read_dqs;
d844c7d4 1241 const u32 correct_mask_vg = param->read_correct_mask_vg;
3da42859 1242
d844c7d4
MV
1243 u32 tmp_bit_chk, base_rw_mgr, bit_chk;
1244 int vg, r;
1245 int ret = 0;
1246
1247 bit_chk = param->read_correct_mask;
3da42859
DN
1248
1249 for (r = rank_bgn; r < rank_end; r++) {
d844c7d4 1250 /* Set rank */
3da42859
DN
1251 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1252
1253 /* Load up a constant bursts of read commands */
1273dd9e 1254 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr0);
1fa0c8c4 1255 writel(rwcfg->guaranteed_read,
139823ec 1256 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
3da42859 1257
1273dd9e 1258 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr1);
1fa0c8c4 1259 writel(rwcfg->guaranteed_read_cont,
139823ec 1260 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
3da42859
DN
1261
1262 tmp_bit_chk = 0;
1fa0c8c4 1263 for (vg = rwcfg->mem_virtual_groups_per_read_dqs - 1;
d844c7d4
MV
1264 vg >= 0; vg--) {
1265 /* Reset the FIFOs to get pointers to known state. */
1273dd9e
MV
1266 writel(0, &phy_mgr_cmd->fifo_reset);
1267 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1268 RW_MGR_RESET_READ_DATAPATH_OFFSET);
1fa0c8c4 1269 writel(rwcfg->guaranteed_read,
d844c7d4 1270 addr + addr_offset + (vg << 2));
3da42859 1271
1273dd9e 1272 base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
d844c7d4
MV
1273 tmp_bit_chk <<= shift_ratio;
1274 tmp_bit_chk |= correct_mask_vg & ~base_rw_mgr;
3da42859 1275 }
d844c7d4
MV
1276
1277 bit_chk &= tmp_bit_chk;
3da42859
DN
1278 }
1279
1fa0c8c4 1280 writel(rwcfg->clear_dqs_enable, addr + (group << 2));
3da42859
DN
1281
1282 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
d844c7d4
MV
1283
1284 if (bit_chk != param->read_correct_mask)
1285 ret = -EIO;
1286
1287 debug_cond(DLEVEL == 1,
1288 "%s:%d test_load_patterns(%u,ALL) => (%u == %u) => %i\n",
1289 __func__, __LINE__, group, bit_chk,
1290 param->read_correct_mask, ret);
1291
1292 return ret;
3da42859
DN
1293}
1294
b6cb7f9e
MV
1295/**
1296 * rw_mgr_mem_calibrate_read_load_patterns() - Load up the patterns for read test
1297 * @rank_bgn: Rank number
1298 * @all_ranks: Test all ranks
1299 *
1300 * Load up the patterns we are going to use during a read test.
1301 */
1302static void rw_mgr_mem_calibrate_read_load_patterns(const u32 rank_bgn,
1303 const int all_ranks)
3da42859 1304{
b6cb7f9e 1305 const u32 rank_end = all_ranks ?
1fa0c8c4 1306 rwcfg->mem_number_of_ranks :
b6cb7f9e
MV
1307 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1308 u32 r;
3da42859
DN
1309
1310 debug("%s:%d\n", __func__, __LINE__);
b6cb7f9e 1311
3da42859 1312 for (r = rank_bgn; r < rank_end; r++) {
3da42859
DN
1313 /* set rank */
1314 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1315
1316 /* Load up a constant bursts */
1273dd9e 1317 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr0);
3da42859 1318
1fa0c8c4 1319 writel(rwcfg->guaranteed_write_wait0,
139823ec 1320 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
3da42859 1321
1273dd9e 1322 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr1);
3da42859 1323
1fa0c8c4 1324 writel(rwcfg->guaranteed_write_wait1,
139823ec 1325 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
3da42859 1326
1273dd9e 1327 writel(0x04, &sdr_rw_load_mgr_regs->load_cntr2);
3da42859 1328
1fa0c8c4 1329 writel(rwcfg->guaranteed_write_wait2,
139823ec 1330 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
3da42859 1331
1273dd9e 1332 writel(0x04, &sdr_rw_load_mgr_regs->load_cntr3);
3da42859 1333
1fa0c8c4 1334 writel(rwcfg->guaranteed_write_wait3,
139823ec 1335 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
3da42859 1336
1fa0c8c4 1337 writel(rwcfg->guaranteed_write, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1273dd9e 1338 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
3da42859
DN
1339 }
1340
1341 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
1342}
1343
783fcf59
MV
1344/**
1345 * rw_mgr_mem_calibrate_read_test() - Perform READ test on single rank
1346 * @rank_bgn: Rank number
1347 * @group: Read/Write group
1348 * @num_tries: Number of retries of the test
1349 * @all_correct: All bits must be correct in the mask
1350 * @bit_chk: Resulting bit mask after the test
1351 * @all_groups: Test all R/W groups
1352 * @all_ranks: Test all ranks
1353 *
1354 * Try a read and see if it returns correct data back. Test has dummy reads
1355 * inserted into the mix used to align DQS enable. Test has more thorough
1356 * checks than the regular read test.
3da42859 1357 */
3cb8bf3f
MV
1358static int
1359rw_mgr_mem_calibrate_read_test(const u32 rank_bgn, const u32 group,
1360 const u32 num_tries, const u32 all_correct,
1361 u32 *bit_chk,
1362 const u32 all_groups, const u32 all_ranks)
3da42859 1363{
1fa0c8c4 1364 const u32 rank_end = all_ranks ? rwcfg->mem_number_of_ranks :
3da42859 1365 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
3cb8bf3f
MV
1366 const u32 quick_read_mode =
1367 ((STATIC_CALIB_STEPS & CALIB_SKIP_DELAY_SWEEPS) &&
96fd4362 1368 misccfg->enable_super_quick_calibration);
3cb8bf3f
MV
1369 u32 correct_mask_vg = param->read_correct_mask_vg;
1370 u32 tmp_bit_chk;
1371 u32 base_rw_mgr;
1372 u32 addr;
3da42859 1373
3cb8bf3f 1374 int r, vg, ret;
3853d65e 1375
3cb8bf3f 1376 *bit_chk = param->read_correct_mask;
3da42859
DN
1377
1378 for (r = rank_bgn; r < rank_end; r++) {
3da42859
DN
1379 /* set rank */
1380 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1381
1273dd9e 1382 writel(0x10, &sdr_rw_load_mgr_regs->load_cntr1);
3da42859 1383
1fa0c8c4 1384 writel(rwcfg->read_b2b_wait1,
139823ec 1385 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
3da42859 1386
1273dd9e 1387 writel(0x10, &sdr_rw_load_mgr_regs->load_cntr2);
1fa0c8c4 1388 writel(rwcfg->read_b2b_wait2,
139823ec 1389 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
3da42859 1390
3da42859 1391 if (quick_read_mode)
1273dd9e 1392 writel(0x1, &sdr_rw_load_mgr_regs->load_cntr0);
3da42859
DN
1393 /* need at least two (1+1) reads to capture failures */
1394 else if (all_groups)
1273dd9e 1395 writel(0x06, &sdr_rw_load_mgr_regs->load_cntr0);
3da42859 1396 else
1273dd9e 1397 writel(0x32, &sdr_rw_load_mgr_regs->load_cntr0);
3da42859 1398
1fa0c8c4 1399 writel(rwcfg->read_b2b,
139823ec 1400 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
3da42859 1401 if (all_groups)
1fa0c8c4
MV
1402 writel(rwcfg->mem_if_read_dqs_width *
1403 rwcfg->mem_virtual_groups_per_read_dqs - 1,
1273dd9e 1404 &sdr_rw_load_mgr_regs->load_cntr3);
3da42859 1405 else
1273dd9e 1406 writel(0x0, &sdr_rw_load_mgr_regs->load_cntr3);
3da42859 1407
1fa0c8c4 1408 writel(rwcfg->read_b2b,
139823ec 1409 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
3da42859
DN
1410
1411 tmp_bit_chk = 0;
1fa0c8c4 1412 for (vg = rwcfg->mem_virtual_groups_per_read_dqs - 1; vg >= 0;
7ce23bb6 1413 vg--) {
ba522c76 1414 /* Reset the FIFOs to get pointers to known state. */
1273dd9e
MV
1415 writel(0, &phy_mgr_cmd->fifo_reset);
1416 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1417 RW_MGR_RESET_READ_DATAPATH_OFFSET);
3da42859 1418
ba522c76
MV
1419 if (all_groups) {
1420 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1421 RW_MGR_RUN_ALL_GROUPS_OFFSET;
1422 } else {
1423 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1424 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
1425 }
c4815f76 1426
1fa0c8c4 1427 writel(rwcfg->read_b2b, addr +
139823ec
MV
1428 ((group *
1429 rwcfg->mem_virtual_groups_per_read_dqs +
1430 vg) << 2));
3da42859 1431
1273dd9e 1432 base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
1fa0c8c4
MV
1433 tmp_bit_chk <<= rwcfg->mem_dq_per_read_dqs /
1434 rwcfg->mem_virtual_groups_per_read_dqs;
ba522c76 1435 tmp_bit_chk |= correct_mask_vg & ~(base_rw_mgr);
3da42859 1436 }
7ce23bb6 1437
3da42859
DN
1438 *bit_chk &= tmp_bit_chk;
1439 }
1440
c4815f76 1441 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_RUN_SINGLE_GROUP_OFFSET;
1fa0c8c4 1442 writel(rwcfg->clear_dqs_enable, addr + (group << 2));
3da42859 1443
3853d65e
MV
1444 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
1445
3da42859 1446 if (all_correct) {
3853d65e
MV
1447 ret = (*bit_chk == param->read_correct_mask);
1448 debug_cond(DLEVEL == 2,
1449 "%s:%d read_test(%u,ALL,%u) => (%u == %u) => %i\n",
1450 __func__, __LINE__, group, all_groups, *bit_chk,
1451 param->read_correct_mask, ret);
3da42859 1452 } else {
3853d65e
MV
1453 ret = (*bit_chk != 0x00);
1454 debug_cond(DLEVEL == 2,
1455 "%s:%d read_test(%u,ONE,%u) => (%u != %u) => %i\n",
1456 __func__, __LINE__, group, all_groups, *bit_chk,
1457 0, ret);
3da42859 1458 }
3853d65e
MV
1459
1460 return ret;
3da42859
DN
1461}
1462
96df6036
MV
1463/**
1464 * rw_mgr_mem_calibrate_read_test_all_ranks() - Perform READ test on all ranks
1465 * @grp: Read/Write group
1466 * @num_tries: Number of retries of the test
1467 * @all_correct: All bits must be correct in the mask
1468 * @all_groups: Test all R/W groups
1469 *
1470 * Perform a READ test across all memory ranks.
1471 */
1472static int
1473rw_mgr_mem_calibrate_read_test_all_ranks(const u32 grp, const u32 num_tries,
1474 const u32 all_correct,
1475 const u32 all_groups)
3da42859 1476{
96df6036
MV
1477 u32 bit_chk;
1478 return rw_mgr_mem_calibrate_read_test(0, grp, num_tries, all_correct,
1479 &bit_chk, all_groups, 1);
3da42859
DN
1480}
1481
60bb8a8a
MV
1482/**
1483 * rw_mgr_incr_vfifo() - Increase VFIFO value
1484 * @grp: Read/Write group
60bb8a8a
MV
1485 *
1486 * Increase VFIFO value.
1487 */
8c887b6e 1488static void rw_mgr_incr_vfifo(const u32 grp)
3da42859 1489{
1273dd9e 1490 writel(grp, &phy_mgr_cmd->inc_vfifo_hard_phy);
3da42859
DN
1491}
1492
60bb8a8a
MV
1493/**
1494 * rw_mgr_decr_vfifo() - Decrease VFIFO value
1495 * @grp: Read/Write group
60bb8a8a
MV
1496 *
1497 * Decrease VFIFO value.
1498 */
8c887b6e 1499static void rw_mgr_decr_vfifo(const u32 grp)
3da42859 1500{
60bb8a8a 1501 u32 i;
3da42859 1502
96fd4362 1503 for (i = 0; i < misccfg->read_valid_fifo_size - 1; i++)
8c887b6e 1504 rw_mgr_incr_vfifo(grp);
3da42859
DN
1505}
1506
d145ca9f
MV
1507/**
1508 * find_vfifo_failing_read() - Push VFIFO to get a failing read
1509 * @grp: Read/Write group
1510 *
1511 * Push VFIFO until a failing read happens.
1512 */
1513static int find_vfifo_failing_read(const u32 grp)
3da42859 1514{
96df6036 1515 u32 v, ret, fail_cnt = 0;
3da42859 1516
96fd4362 1517 for (v = 0; v < misccfg->read_valid_fifo_size; v++) {
d145ca9f 1518 debug_cond(DLEVEL == 2, "%s:%d: vfifo %u\n",
3da42859 1519 __func__, __LINE__, v);
d145ca9f 1520 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
96df6036 1521 PASS_ONE_BIT, 0);
d145ca9f 1522 if (!ret) {
3da42859
DN
1523 fail_cnt++;
1524
1525 if (fail_cnt == 2)
d145ca9f 1526 return v;
3da42859
DN
1527 }
1528
d145ca9f 1529 /* Fiddle with FIFO. */
8c887b6e 1530 rw_mgr_incr_vfifo(grp);
3da42859
DN
1531 }
1532
d145ca9f
MV
1533 /* No failing read found! Something must have gone wrong. */
1534 debug_cond(DLEVEL == 2, "%s:%d: vfifo failed\n", __func__, __LINE__);
1535 return 0;
3da42859
DN
1536}
1537
52e8f217
MV
1538/**
1539 * sdr_find_phase_delay() - Find DQS enable phase or delay
1540 * @working: If 1, look for working phase/delay, if 0, look for non-working
1541 * @delay: If 1, look for delay, if 0, look for phase
1542 * @grp: Read/Write group
1543 * @work: Working window position
1544 * @work_inc: Working window increment
1545 * @pd: DQS Phase/Delay Iterator
1546 *
1547 * Find working or non-working DQS enable phase setting.
1548 */
1549static int sdr_find_phase_delay(int working, int delay, const u32 grp,
1550 u32 *work, const u32 work_inc, u32 *pd)
1551{
139823ec
MV
1552 const u32 max = delay ? iocfg->dqs_en_delay_max :
1553 iocfg->dqs_en_phase_max;
96df6036 1554 u32 ret;
52e8f217
MV
1555
1556 for (; *pd <= max; (*pd)++) {
1557 if (delay)
1558 scc_mgr_set_dqs_en_delay_all_ranks(grp, *pd);
1559 else
1560 scc_mgr_set_dqs_en_phase_all_ranks(grp, *pd);
1561
1562 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
96df6036 1563 PASS_ONE_BIT, 0);
52e8f217
MV
1564 if (!working)
1565 ret = !ret;
1566
1567 if (ret)
1568 return 0;
1569
1570 if (work)
1571 *work += work_inc;
1572 }
1573
1574 return -EINVAL;
1575}
192d6f9f
MV
1576/**
1577 * sdr_find_phase() - Find DQS enable phase
1578 * @working: If 1, look for working phase, if 0, look for non-working phase
1579 * @grp: Read/Write group
192d6f9f
MV
1580 * @work: Working window position
1581 * @i: Iterator
1582 * @p: DQS Phase Iterator
192d6f9f
MV
1583 *
1584 * Find working or non-working DQS enable phase setting.
1585 */
8c887b6e 1586static int sdr_find_phase(int working, const u32 grp, u32 *work,
86a39dc7 1587 u32 *i, u32 *p)
3da42859 1588{
96fd4362 1589 const u32 end = misccfg->read_valid_fifo_size + (working ? 0 : 1);
52e8f217 1590 int ret;
3da42859 1591
192d6f9f
MV
1592 for (; *i < end; (*i)++) {
1593 if (working)
1594 *p = 0;
1595
52e8f217 1596 ret = sdr_find_phase_delay(working, 0, grp, work,
160695d8 1597 iocfg->delay_per_opa_tap, p);
52e8f217
MV
1598 if (!ret)
1599 return 0;
192d6f9f 1600
160695d8 1601 if (*p > iocfg->dqs_en_phase_max) {
192d6f9f 1602 /* Fiddle with FIFO. */
8c887b6e 1603 rw_mgr_incr_vfifo(grp);
192d6f9f
MV
1604 if (!working)
1605 *p = 0;
3da42859 1606 }
3da42859
DN
1607 }
1608
192d6f9f
MV
1609 return -EINVAL;
1610}
1611
4c5e584b
MV
1612/**
1613 * sdr_working_phase() - Find working DQS enable phase
1614 * @grp: Read/Write group
1615 * @work_bgn: Working window start position
4c5e584b
MV
1616 * @d: dtaps output value
1617 * @p: DQS Phase Iterator
1618 * @i: Iterator
1619 *
1620 * Find working DQS enable phase setting.
1621 */
8c887b6e 1622static int sdr_working_phase(const u32 grp, u32 *work_bgn, u32 *d,
4c5e584b 1623 u32 *p, u32 *i)
192d6f9f 1624{
160695d8
MV
1625 const u32 dtaps_per_ptap = iocfg->delay_per_opa_tap /
1626 iocfg->delay_per_dqs_en_dchain_tap;
192d6f9f
MV
1627 int ret;
1628
1629 *work_bgn = 0;
1630
1631 for (*d = 0; *d <= dtaps_per_ptap; (*d)++) {
1632 *i = 0;
1633 scc_mgr_set_dqs_en_delay_all_ranks(grp, *d);
8c887b6e 1634 ret = sdr_find_phase(1, grp, work_bgn, i, p);
192d6f9f
MV
1635 if (!ret)
1636 return 0;
160695d8 1637 *work_bgn += iocfg->delay_per_dqs_en_dchain_tap;
192d6f9f
MV
1638 }
1639
38ed6922 1640 /* Cannot find working solution */
192d6f9f
MV
1641 debug_cond(DLEVEL == 2, "%s:%d find_dqs_en_phase: no vfifo/ptap/dtap\n",
1642 __func__, __LINE__);
1643 return -EINVAL;
3da42859
DN
1644}
1645
4c5e584b
MV
1646/**
1647 * sdr_backup_phase() - Find DQS enable backup phase
1648 * @grp: Read/Write group
1649 * @work_bgn: Working window start position
4c5e584b
MV
1650 * @p: DQS Phase Iterator
1651 *
1652 * Find DQS enable backup phase setting.
1653 */
8c887b6e 1654static void sdr_backup_phase(const u32 grp, u32 *work_bgn, u32 *p)
3da42859 1655{
96df6036 1656 u32 tmp_delay, d;
4c5e584b 1657 int ret;
3da42859
DN
1658
1659 /* Special case code for backing up a phase */
1660 if (*p == 0) {
160695d8 1661 *p = iocfg->dqs_en_phase_max;
8c887b6e 1662 rw_mgr_decr_vfifo(grp);
3da42859
DN
1663 } else {
1664 (*p)--;
1665 }
160695d8 1666 tmp_delay = *work_bgn - iocfg->delay_per_opa_tap;
521fe39c 1667 scc_mgr_set_dqs_en_phase_all_ranks(grp, *p);
3da42859 1668
139823ec
MV
1669 for (d = 0; d <= iocfg->dqs_en_delay_max && tmp_delay < *work_bgn;
1670 d++) {
49891df6 1671 scc_mgr_set_dqs_en_delay_all_ranks(grp, d);
3da42859 1672
4c5e584b 1673 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
96df6036 1674 PASS_ONE_BIT, 0);
4c5e584b 1675 if (ret) {
3da42859
DN
1676 *work_bgn = tmp_delay;
1677 break;
1678 }
49891df6 1679
160695d8 1680 tmp_delay += iocfg->delay_per_dqs_en_dchain_tap;
3da42859
DN
1681 }
1682
4c5e584b 1683 /* Restore VFIFO to old state before we decremented it (if needed). */
3da42859 1684 (*p)++;
160695d8 1685 if (*p > iocfg->dqs_en_phase_max) {
3da42859 1686 *p = 0;
8c887b6e 1687 rw_mgr_incr_vfifo(grp);
3da42859
DN
1688 }
1689
521fe39c 1690 scc_mgr_set_dqs_en_delay_all_ranks(grp, 0);
3da42859
DN
1691}
1692
4c5e584b
MV
1693/**
1694 * sdr_nonworking_phase() - Find non-working DQS enable phase
1695 * @grp: Read/Write group
1696 * @work_end: Working window end position
4c5e584b
MV
1697 * @p: DQS Phase Iterator
1698 * @i: Iterator
1699 *
1700 * Find non-working DQS enable phase setting.
1701 */
8c887b6e 1702static int sdr_nonworking_phase(const u32 grp, u32 *work_end, u32 *p, u32 *i)
3da42859 1703{
192d6f9f 1704 int ret;
3da42859
DN
1705
1706 (*p)++;
160695d8
MV
1707 *work_end += iocfg->delay_per_opa_tap;
1708 if (*p > iocfg->dqs_en_phase_max) {
192d6f9f 1709 /* Fiddle with FIFO. */
3da42859 1710 *p = 0;
8c887b6e 1711 rw_mgr_incr_vfifo(grp);
3da42859
DN
1712 }
1713
8c887b6e 1714 ret = sdr_find_phase(0, grp, work_end, i, p);
192d6f9f
MV
1715 if (ret) {
1716 /* Cannot see edge of failing read. */
1717 debug_cond(DLEVEL == 2, "%s:%d: end: failed\n",
1718 __func__, __LINE__);
3da42859
DN
1719 }
1720
192d6f9f 1721 return ret;
3da42859
DN
1722}
1723
0a13a0fb
MV
1724/**
1725 * sdr_find_window_center() - Find center of the working DQS window.
1726 * @grp: Read/Write group
1727 * @work_bgn: First working settings
1728 * @work_end: Last working settings
0a13a0fb
MV
1729 *
1730 * Find center of the working DQS enable window.
1731 */
1732static int sdr_find_window_center(const u32 grp, const u32 work_bgn,
8c887b6e 1733 const u32 work_end)
3da42859 1734{
96df6036 1735 u32 work_mid;
3da42859 1736 int tmp_delay = 0;
28fd242a 1737 int i, p, d;
3da42859 1738
28fd242a 1739 work_mid = (work_bgn + work_end) / 2;
3da42859
DN
1740
1741 debug_cond(DLEVEL == 2, "work_bgn=%d work_end=%d work_mid=%d\n",
28fd242a 1742 work_bgn, work_end, work_mid);
3da42859 1743 /* Get the middle delay to be less than a VFIFO delay */
160695d8 1744 tmp_delay = (iocfg->dqs_en_phase_max + 1) * iocfg->delay_per_opa_tap;
28fd242a 1745
3da42859 1746 debug_cond(DLEVEL == 2, "vfifo ptap delay %d\n", tmp_delay);
cbb0b7e0 1747 work_mid %= tmp_delay;
28fd242a 1748 debug_cond(DLEVEL == 2, "new work_mid %d\n", work_mid);
3da42859 1749
160695d8
MV
1750 tmp_delay = rounddown(work_mid, iocfg->delay_per_opa_tap);
1751 if (tmp_delay > iocfg->dqs_en_phase_max * iocfg->delay_per_opa_tap)
1752 tmp_delay = iocfg->dqs_en_phase_max * iocfg->delay_per_opa_tap;
1753 p = tmp_delay / iocfg->delay_per_opa_tap;
cbb0b7e0
MV
1754
1755 debug_cond(DLEVEL == 2, "new p %d, tmp_delay=%d\n", p, tmp_delay);
1756
139823ec
MV
1757 d = DIV_ROUND_UP(work_mid - tmp_delay,
1758 iocfg->delay_per_dqs_en_dchain_tap);
160695d8
MV
1759 if (d > iocfg->dqs_en_delay_max)
1760 d = iocfg->dqs_en_delay_max;
1761 tmp_delay += d * iocfg->delay_per_dqs_en_dchain_tap;
28fd242a 1762
28fd242a 1763 debug_cond(DLEVEL == 2, "new d %d, tmp_delay=%d\n", d, tmp_delay);
3da42859 1764
cbb0b7e0 1765 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
28fd242a 1766 scc_mgr_set_dqs_en_delay_all_ranks(grp, d);
3da42859
DN
1767
1768 /*
1769 * push vfifo until we can successfully calibrate. We can do this
1770 * because the largest possible margin in 1 VFIFO cycle.
1771 */
96fd4362 1772 for (i = 0; i < misccfg->read_valid_fifo_size; i++) {
8c887b6e 1773 debug_cond(DLEVEL == 2, "find_dqs_en_phase: center\n");
28fd242a 1774 if (rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
3da42859 1775 PASS_ONE_BIT,
96df6036 1776 0)) {
0a13a0fb 1777 debug_cond(DLEVEL == 2,
8c887b6e
MV
1778 "%s:%d center: found: ptap=%u dtap=%u\n",
1779 __func__, __LINE__, p, d);
0a13a0fb 1780 return 0;
3da42859
DN
1781 }
1782
0a13a0fb 1783 /* Fiddle with FIFO. */
8c887b6e 1784 rw_mgr_incr_vfifo(grp);
3da42859
DN
1785 }
1786
0a13a0fb
MV
1787 debug_cond(DLEVEL == 2, "%s:%d center: failed.\n",
1788 __func__, __LINE__);
1789 return -EINVAL;
3da42859
DN
1790}
1791
33756893
MV
1792/**
1793 * rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase() - Find a good DQS enable to use
1794 * @grp: Read/Write Group
1795 *
1796 * Find a good DQS enable to use.
1797 */
914546e7 1798static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
3da42859 1799{
5735540f
MV
1800 u32 d, p, i;
1801 u32 dtaps_per_ptap;
1802 u32 work_bgn, work_end;
1803 u32 found_passing_read, found_failing_read, initial_failing_dtap;
1804 int ret;
3da42859
DN
1805
1806 debug("%s:%d %u\n", __func__, __LINE__, grp);
1807
1808 reg_file_set_sub_stage(CAL_SUBSTAGE_VFIFO_CENTER);
1809
1810 scc_mgr_set_dqs_en_delay_all_ranks(grp, 0);
1811 scc_mgr_set_dqs_en_phase_all_ranks(grp, 0);
1812
2f3589ca 1813 /* Step 0: Determine number of delay taps for each phase tap. */
139823ec
MV
1814 dtaps_per_ptap = iocfg->delay_per_opa_tap /
1815 iocfg->delay_per_dqs_en_dchain_tap;
3da42859 1816
2f3589ca 1817 /* Step 1: First push vfifo until we get a failing read. */
d145ca9f 1818 find_vfifo_failing_read(grp);
3da42859 1819
2f3589ca 1820 /* Step 2: Find first working phase, increment in ptaps. */
3da42859 1821 work_bgn = 0;
914546e7
MV
1822 ret = sdr_working_phase(grp, &work_bgn, &d, &p, &i);
1823 if (ret)
1824 return ret;
3da42859
DN
1825
1826 work_end = work_bgn;
1827
1828 /*
2f3589ca
MV
1829 * If d is 0 then the working window covers a phase tap and we can
1830 * follow the old procedure. Otherwise, we've found the beginning
3da42859
DN
1831 * and we need to increment the dtaps until we find the end.
1832 */
1833 if (d == 0) {
2f3589ca
MV
1834 /*
1835 * Step 3a: If we have room, back off by one and
1836 * increment in dtaps.
1837 */
8c887b6e 1838 sdr_backup_phase(grp, &work_bgn, &p);
3da42859 1839
2f3589ca
MV
1840 /*
1841 * Step 4a: go forward from working phase to non working
1842 * phase, increment in ptaps.
1843 */
914546e7
MV
1844 ret = sdr_nonworking_phase(grp, &work_end, &p, &i);
1845 if (ret)
1846 return ret;
3da42859 1847
2f3589ca 1848 /* Step 5a: Back off one from last, increment in dtaps. */
3da42859
DN
1849
1850 /* Special case code for backing up a phase */
1851 if (p == 0) {
160695d8 1852 p = iocfg->dqs_en_phase_max;
8c887b6e 1853 rw_mgr_decr_vfifo(grp);
3da42859
DN
1854 } else {
1855 p = p - 1;
1856 }
1857
160695d8 1858 work_end -= iocfg->delay_per_opa_tap;
3da42859
DN
1859 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
1860
3da42859
DN
1861 d = 0;
1862
2f3589ca
MV
1863 debug_cond(DLEVEL == 2, "%s:%d p: ptap=%u\n",
1864 __func__, __LINE__, p);
3da42859
DN
1865 }
1866
2f3589ca 1867 /* The dtap increment to find the failing edge is done here. */
52e8f217 1868 sdr_find_phase_delay(0, 1, grp, &work_end,
160695d8 1869 iocfg->delay_per_dqs_en_dchain_tap, &d);
3da42859
DN
1870
1871 /* Go back to working dtap */
1872 if (d != 0)
160695d8 1873 work_end -= iocfg->delay_per_dqs_en_dchain_tap;
3da42859 1874
2f3589ca
MV
1875 debug_cond(DLEVEL == 2,
1876 "%s:%d p/d: ptap=%u dtap=%u end=%u\n",
1877 __func__, __LINE__, p, d - 1, work_end);
3da42859
DN
1878
1879 if (work_end < work_bgn) {
1880 /* nil range */
2f3589ca
MV
1881 debug_cond(DLEVEL == 2, "%s:%d end-2: failed\n",
1882 __func__, __LINE__);
914546e7 1883 return -EINVAL;
3da42859
DN
1884 }
1885
2f3589ca 1886 debug_cond(DLEVEL == 2, "%s:%d found range [%u,%u]\n",
3da42859
DN
1887 __func__, __LINE__, work_bgn, work_end);
1888
3da42859 1889 /*
2f3589ca
MV
1890 * We need to calculate the number of dtaps that equal a ptap.
1891 * To do that we'll back up a ptap and re-find the edge of the
1892 * window using dtaps
3da42859 1893 */
2f3589ca
MV
1894 debug_cond(DLEVEL == 2, "%s:%d calculate dtaps_per_ptap for tracking\n",
1895 __func__, __LINE__);
3da42859
DN
1896
1897 /* Special case code for backing up a phase */
1898 if (p == 0) {
160695d8 1899 p = iocfg->dqs_en_phase_max;
8c887b6e 1900 rw_mgr_decr_vfifo(grp);
2f3589ca
MV
1901 debug_cond(DLEVEL == 2, "%s:%d backedup cycle/phase: p=%u\n",
1902 __func__, __LINE__, p);
3da42859
DN
1903 } else {
1904 p = p - 1;
2f3589ca
MV
1905 debug_cond(DLEVEL == 2, "%s:%d backedup phase only: p=%u",
1906 __func__, __LINE__, p);
3da42859
DN
1907 }
1908
1909 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
1910
1911 /*
1912 * Increase dtap until we first see a passing read (in case the
2f3589ca
MV
1913 * window is smaller than a ptap), and then a failing read to
1914 * mark the edge of the window again.
3da42859
DN
1915 */
1916
2f3589ca
MV
1917 /* Find a passing read. */
1918 debug_cond(DLEVEL == 2, "%s:%d find passing read\n",
3da42859 1919 __func__, __LINE__);
3da42859 1920
52e8f217 1921 initial_failing_dtap = d;
3da42859 1922
52e8f217 1923 found_passing_read = !sdr_find_phase_delay(1, 1, grp, NULL, 0, &d);
3da42859 1924 if (found_passing_read) {
2f3589ca
MV
1925 /* Find a failing read. */
1926 debug_cond(DLEVEL == 2, "%s:%d find failing read\n",
1927 __func__, __LINE__);
52e8f217
MV
1928 d++;
1929 found_failing_read = !sdr_find_phase_delay(0, 1, grp, NULL, 0,
1930 &d);
3da42859 1931 } else {
2f3589ca
MV
1932 debug_cond(DLEVEL == 1,
1933 "%s:%d failed to calculate dtaps per ptap. Fall back on static value\n",
1934 __func__, __LINE__);
3da42859
DN
1935 }
1936
1937 /*
1938 * The dynamically calculated dtaps_per_ptap is only valid if we
1939 * found a passing/failing read. If we didn't, it means d hit the max
160695d8 1940 * (iocfg->dqs_en_delay_max). Otherwise, dtaps_per_ptap retains its
3da42859
DN
1941 * statically calculated value.
1942 */
1943 if (found_passing_read && found_failing_read)
1944 dtaps_per_ptap = d - initial_failing_dtap;
1945
1273dd9e 1946 writel(dtaps_per_ptap, &sdr_reg_file->dtaps_per_ptap);
2f3589ca
MV
1947 debug_cond(DLEVEL == 2, "%s:%d dtaps_per_ptap=%u - %u = %u",
1948 __func__, __LINE__, d, initial_failing_dtap, dtaps_per_ptap);
3da42859 1949
2f3589ca 1950 /* Step 6: Find the centre of the window. */
914546e7 1951 ret = sdr_find_window_center(grp, work_bgn, work_end);
3da42859 1952
914546e7 1953 return ret;
3da42859
DN
1954}
1955
901dc36e
MV
1956/**
1957 * search_stop_check() - Check if the detected edge is valid
1958 * @write: Perform read (Stage 2) or write (Stage 3) calibration
1959 * @d: DQS delay
1960 * @rank_bgn: Rank number
1961 * @write_group: Write Group
1962 * @read_group: Read Group
1963 * @bit_chk: Resulting bit mask after the test
1964 * @sticky_bit_chk: Resulting sticky bit mask after the test
1965 * @use_read_test: Perform read test
1966 *
1967 * Test if the found edge is valid.
1968 */
1969static u32 search_stop_check(const int write, const int d, const int rank_bgn,
1970 const u32 write_group, const u32 read_group,
1971 u32 *bit_chk, u32 *sticky_bit_chk,
1972 const u32 use_read_test)
1973{
1fa0c8c4
MV
1974 const u32 ratio = rwcfg->mem_if_read_dqs_width /
1975 rwcfg->mem_if_write_dqs_width;
901dc36e
MV
1976 const u32 correct_mask = write ? param->write_correct_mask :
1977 param->read_correct_mask;
1fa0c8c4
MV
1978 const u32 per_dqs = write ? rwcfg->mem_dq_per_write_dqs :
1979 rwcfg->mem_dq_per_read_dqs;
901dc36e
MV
1980 u32 ret;
1981 /*
1982 * Stop searching when the read test doesn't pass AND when
1983 * we've seen a passing read on every bit.
1984 */
1985 if (write) { /* WRITE-ONLY */
1986 ret = !rw_mgr_mem_calibrate_write_test(rank_bgn, write_group,
1987 0, PASS_ONE_BIT,
1988 bit_chk, 0);
1989 } else if (use_read_test) { /* READ-ONLY */
1990 ret = !rw_mgr_mem_calibrate_read_test(rank_bgn, read_group,
1991 NUM_READ_PB_TESTS,
1992 PASS_ONE_BIT, bit_chk,
1993 0, 0);
1994 } else { /* READ-ONLY */
1995 rw_mgr_mem_calibrate_write_test(rank_bgn, write_group, 0,
1996 PASS_ONE_BIT, bit_chk, 0);
1997 *bit_chk = *bit_chk >> (per_dqs *
1998 (read_group - (write_group * ratio)));
1999 ret = (*bit_chk == 0);
2000 }
2001 *sticky_bit_chk = *sticky_bit_chk | *bit_chk;
2002 ret = ret && (*sticky_bit_chk == correct_mask);
2003 debug_cond(DLEVEL == 2,
2004 "%s:%d center(left): dtap=%u => %u == %u && %u",
2005 __func__, __LINE__, d,
2006 *sticky_bit_chk, correct_mask, ret);
2007 return ret;
2008}
2009
71120773
MV
2010/**
2011 * search_left_edge() - Find left edge of DQ/DQS working phase
2012 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2013 * @rank_bgn: Rank number
2014 * @write_group: Write Group
2015 * @read_group: Read Group
2016 * @test_bgn: Rank number to begin the test
71120773
MV
2017 * @sticky_bit_chk: Resulting sticky bit mask after the test
2018 * @left_edge: Left edge of the DQ/DQS phase
2019 * @right_edge: Right edge of the DQ/DQS phase
2020 * @use_read_test: Perform read test
2021 *
2022 * Find left edge of DQ/DQS working phase.
2023 */
2024static void search_left_edge(const int write, const int rank_bgn,
2025 const u32 write_group, const u32 read_group, const u32 test_bgn,
0c4be198 2026 u32 *sticky_bit_chk,
71120773
MV
2027 int *left_edge, int *right_edge, const u32 use_read_test)
2028{
139823ec
MV
2029 const u32 delay_max = write ? iocfg->io_out1_delay_max :
2030 iocfg->io_in_delay_max;
2031 const u32 dqs_max = write ? iocfg->io_out1_delay_max :
2032 iocfg->dqs_in_delay_max;
1fa0c8c4
MV
2033 const u32 per_dqs = write ? rwcfg->mem_dq_per_write_dqs :
2034 rwcfg->mem_dq_per_read_dqs;
0c4be198 2035 u32 stop, bit_chk;
71120773
MV
2036 int i, d;
2037
2038 for (d = 0; d <= dqs_max; d++) {
2039 if (write)
2040 scc_mgr_apply_group_dq_out1_delay(d);
2041 else
2042 scc_mgr_apply_group_dq_in_delay(test_bgn, d);
2043
2044 writel(0, &sdr_scc_mgr->update);
2045
901dc36e 2046 stop = search_stop_check(write, d, rank_bgn, write_group,
0c4be198 2047 read_group, &bit_chk, sticky_bit_chk,
901dc36e 2048 use_read_test);
71120773
MV
2049 if (stop == 1)
2050 break;
2051
2052 /* stop != 1 */
2053 for (i = 0; i < per_dqs; i++) {
0c4be198 2054 if (bit_chk & 1) {
71120773
MV
2055 /*
2056 * Remember a passing test as
2057 * the left_edge.
2058 */
2059 left_edge[i] = d;
2060 } else {
2061 /*
2062 * If a left edge has not been seen
2063 * yet, then a future passing test
2064 * will mark this edge as the right
2065 * edge.
2066 */
2067 if (left_edge[i] == delay_max + 1)
2068 right_edge[i] = -(d + 1);
2069 }
0c4be198 2070 bit_chk >>= 1;
71120773
MV
2071 }
2072 }
2073
2074 /* Reset DQ delay chains to 0 */
2075 if (write)
2076 scc_mgr_apply_group_dq_out1_delay(0);
2077 else
2078 scc_mgr_apply_group_dq_in_delay(test_bgn, 0);
2079
2080 *sticky_bit_chk = 0;
2081 for (i = per_dqs - 1; i >= 0; i--) {
2082 debug_cond(DLEVEL == 2,
2083 "%s:%d vfifo_center: left_edge[%u]: %d right_edge[%u]: %d\n",
2084 __func__, __LINE__, i, left_edge[i],
2085 i, right_edge[i]);
2086
2087 /*
2088 * Check for cases where we haven't found the left edge,
2089 * which makes our assignment of the the right edge invalid.
2090 * Reset it to the illegal value.
2091 */
2092 if ((left_edge[i] == delay_max + 1) &&
2093 (right_edge[i] != delay_max + 1)) {
2094 right_edge[i] = delay_max + 1;
2095 debug_cond(DLEVEL == 2,
2096 "%s:%d vfifo_center: reset right_edge[%u]: %d\n",
2097 __func__, __LINE__, i, right_edge[i]);
2098 }
2099
2100 /*
2101 * Reset sticky bit
2102 * READ: except for bits where we have seen both
2103 * the left and right edge.
2104 * WRITE: except for bits where we have seen the
2105 * left edge.
2106 */
2107 *sticky_bit_chk <<= 1;
2108 if (write) {
2109 if (left_edge[i] != delay_max + 1)
2110 *sticky_bit_chk |= 1;
2111 } else {
2112 if ((left_edge[i] != delay_max + 1) &&
2113 (right_edge[i] != delay_max + 1))
2114 *sticky_bit_chk |= 1;
2115 }
2116 }
71120773
MV
2117}
2118
c4907898
MV
2119/**
2120 * search_right_edge() - Find right edge of DQ/DQS working phase
2121 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2122 * @rank_bgn: Rank number
2123 * @write_group: Write Group
2124 * @read_group: Read Group
2125 * @start_dqs: DQS start phase
2126 * @start_dqs_en: DQS enable start phase
c4907898
MV
2127 * @sticky_bit_chk: Resulting sticky bit mask after the test
2128 * @left_edge: Left edge of the DQ/DQS phase
2129 * @right_edge: Right edge of the DQ/DQS phase
2130 * @use_read_test: Perform read test
2131 *
2132 * Find right edge of DQ/DQS working phase.
2133 */
2134static int search_right_edge(const int write, const int rank_bgn,
2135 const u32 write_group, const u32 read_group,
2136 const int start_dqs, const int start_dqs_en,
0c4be198 2137 u32 *sticky_bit_chk,
c4907898
MV
2138 int *left_edge, int *right_edge, const u32 use_read_test)
2139{
139823ec
MV
2140 const u32 delay_max = write ? iocfg->io_out1_delay_max :
2141 iocfg->io_in_delay_max;
2142 const u32 dqs_max = write ? iocfg->io_out1_delay_max :
2143 iocfg->dqs_in_delay_max;
1fa0c8c4
MV
2144 const u32 per_dqs = write ? rwcfg->mem_dq_per_write_dqs :
2145 rwcfg->mem_dq_per_read_dqs;
0c4be198 2146 u32 stop, bit_chk;
c4907898
MV
2147 int i, d;
2148
2149 for (d = 0; d <= dqs_max - start_dqs; d++) {
2150 if (write) { /* WRITE-ONLY */
2151 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group,
2152 d + start_dqs);
2153 } else { /* READ-ONLY */
2154 scc_mgr_set_dqs_bus_in_delay(read_group, d + start_dqs);
160695d8 2155 if (iocfg->shift_dqs_en_when_shift_dqs) {
5ded7320 2156 u32 delay = d + start_dqs_en;
160695d8
MV
2157 if (delay > iocfg->dqs_en_delay_max)
2158 delay = iocfg->dqs_en_delay_max;
c4907898
MV
2159 scc_mgr_set_dqs_en_delay(read_group, delay);
2160 }
2161 scc_mgr_load_dqs(read_group);
2162 }
2163
2164 writel(0, &sdr_scc_mgr->update);
2165
901dc36e 2166 stop = search_stop_check(write, d, rank_bgn, write_group,
0c4be198 2167 read_group, &bit_chk, sticky_bit_chk,
901dc36e 2168 use_read_test);
c4907898
MV
2169 if (stop == 1) {
2170 if (write && (d == 0)) { /* WRITE-ONLY */
139823ec
MV
2171 for (i = 0; i < rwcfg->mem_dq_per_write_dqs;
2172 i++) {
c4907898
MV
2173 /*
2174 * d = 0 failed, but it passed when
2175 * testing the left edge, so it must be
2176 * marginal, set it to -1
2177 */
2178 if (right_edge[i] == delay_max + 1 &&
2179 left_edge[i] != delay_max + 1)
2180 right_edge[i] = -1;
2181 }
2182 }
2183 break;
2184 }
2185
2186 /* stop != 1 */
2187 for (i = 0; i < per_dqs; i++) {
0c4be198 2188 if (bit_chk & 1) {
c4907898
MV
2189 /*
2190 * Remember a passing test as
2191 * the right_edge.
2192 */
2193 right_edge[i] = d;
2194 } else {
2195 if (d != 0) {
2196 /*
2197 * If a right edge has not
2198 * been seen yet, then a future
2199 * passing test will mark this
2200 * edge as the left edge.
2201 */
2202 if (right_edge[i] == delay_max + 1)
2203 left_edge[i] = -(d + 1);
2204 } else {
2205 /*
2206 * d = 0 failed, but it passed
2207 * when testing the left edge,
2208 * so it must be marginal, set
2209 * it to -1
2210 */
2211 if (right_edge[i] == delay_max + 1 &&
2212 left_edge[i] != delay_max + 1)
2213 right_edge[i] = -1;
2214 /*
2215 * If a right edge has not been
2216 * seen yet, then a future
2217 * passing test will mark this
2218 * edge as the left edge.
2219 */
2220 else if (right_edge[i] == delay_max + 1)
2221 left_edge[i] = -(d + 1);
2222 }
2223 }
2224
2225 debug_cond(DLEVEL == 2, "%s:%d center[r,d=%u]: ",
2226 __func__, __LINE__, d);
2227 debug_cond(DLEVEL == 2,
2228 "bit_chk_test=%i left_edge[%u]: %d ",
0c4be198 2229 bit_chk & 1, i, left_edge[i]);
c4907898
MV
2230 debug_cond(DLEVEL == 2, "right_edge[%u]: %d\n", i,
2231 right_edge[i]);
0c4be198 2232 bit_chk >>= 1;
c4907898
MV
2233 }
2234 }
2235
2236 /* Check that all bits have a window */
2237 for (i = 0; i < per_dqs; i++) {
2238 debug_cond(DLEVEL == 2,
2239 "%s:%d write_center: left_edge[%u]: %d right_edge[%u]: %d",
2240 __func__, __LINE__, i, left_edge[i],
2241 i, right_edge[i]);
2242 if ((left_edge[i] == dqs_max + 1) ||
2243 (right_edge[i] == dqs_max + 1))
2244 return i + 1; /* FIXME: If we fail, retval > 0 */
2245 }
2246
2247 return 0;
2248}
2249
afb3eb84
MV
2250/**
2251 * get_window_mid_index() - Find the best middle setting of DQ/DQS phase
2252 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2253 * @left_edge: Left edge of the DQ/DQS phase
2254 * @right_edge: Right edge of the DQ/DQS phase
2255 * @mid_min: Best DQ/DQS phase middle setting
2256 *
2257 * Find index and value of the middle of the DQ/DQS working phase.
2258 */
2259static int get_window_mid_index(const int write, int *left_edge,
2260 int *right_edge, int *mid_min)
2261{
1fa0c8c4
MV
2262 const u32 per_dqs = write ? rwcfg->mem_dq_per_write_dqs :
2263 rwcfg->mem_dq_per_read_dqs;
afb3eb84
MV
2264 int i, mid, min_index;
2265
2266 /* Find middle of window for each DQ bit */
2267 *mid_min = left_edge[0] - right_edge[0];
2268 min_index = 0;
2269 for (i = 1; i < per_dqs; i++) {
2270 mid = left_edge[i] - right_edge[i];
2271 if (mid < *mid_min) {
2272 *mid_min = mid;
2273 min_index = i;
2274 }
2275 }
2276
2277 /*
2278 * -mid_min/2 represents the amount that we need to move DQS.
2279 * If mid_min is odd and positive we'll need to add one to make
2280 * sure the rounding in further calculations is correct (always
2281 * bias to the right), so just add 1 for all positive values.
2282 */
2283 if (*mid_min > 0)
2284 (*mid_min)++;
2285 *mid_min = *mid_min / 2;
2286
2287 debug_cond(DLEVEL == 1, "%s:%d vfifo_center: *mid_min=%d (index=%u)\n",
2288 __func__, __LINE__, *mid_min, min_index);
2289 return min_index;
2290}
2291
ffb8b66e
MV
2292/**
2293 * center_dq_windows() - Center the DQ/DQS windows
2294 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2295 * @left_edge: Left edge of the DQ/DQS phase
2296 * @right_edge: Right edge of the DQ/DQS phase
2297 * @mid_min: Adjusted DQ/DQS phase middle setting
2298 * @orig_mid_min: Original DQ/DQS phase middle setting
2299 * @min_index: DQ/DQS phase middle setting index
2300 * @test_bgn: Rank number to begin the test
2301 * @dq_margin: Amount of shift for the DQ
2302 * @dqs_margin: Amount of shift for the DQS
2303 *
2304 * Align the DQ/DQS windows in each group.
2305 */
2306static void center_dq_windows(const int write, int *left_edge, int *right_edge,
2307 const int mid_min, const int orig_mid_min,
2308 const int min_index, const int test_bgn,
2309 int *dq_margin, int *dqs_margin)
2310{
139823ec
MV
2311 const u32 delay_max = write ? iocfg->io_out1_delay_max :
2312 iocfg->io_in_delay_max;
1fa0c8c4
MV
2313 const u32 per_dqs = write ? rwcfg->mem_dq_per_write_dqs :
2314 rwcfg->mem_dq_per_read_dqs;
ffb8b66e
MV
2315 const u32 delay_off = write ? SCC_MGR_IO_OUT1_DELAY_OFFSET :
2316 SCC_MGR_IO_IN_DELAY_OFFSET;
2317 const u32 addr = SDR_PHYGRP_SCCGRP_ADDRESS | delay_off;
2318
2319 u32 temp_dq_io_delay1, temp_dq_io_delay2;
2320 int shift_dq, i, p;
2321
2322 /* Initialize data for export structures */
2323 *dqs_margin = delay_max + 1;
2324 *dq_margin = delay_max + 1;
2325
2326 /* add delay to bring centre of all DQ windows to the same "level" */
2327 for (i = 0, p = test_bgn; i < per_dqs; i++, p++) {
2328 /* Use values before divide by 2 to reduce round off error */
2329 shift_dq = (left_edge[i] - right_edge[i] -
2330 (left_edge[min_index] - right_edge[min_index]))/2 +
2331 (orig_mid_min - mid_min);
2332
2333 debug_cond(DLEVEL == 2,
2334 "vfifo_center: before: shift_dq[%u]=%d\n",
2335 i, shift_dq);
2336
2337 temp_dq_io_delay1 = readl(addr + (p << 2));
2338 temp_dq_io_delay2 = readl(addr + (i << 2));
2339
2340 if (shift_dq + temp_dq_io_delay1 > delay_max)
2341 shift_dq = delay_max - temp_dq_io_delay2;
2342 else if (shift_dq + temp_dq_io_delay1 < 0)
2343 shift_dq = -temp_dq_io_delay1;
2344
2345 debug_cond(DLEVEL == 2,
2346 "vfifo_center: after: shift_dq[%u]=%d\n",
2347 i, shift_dq);
2348
2349 if (write)
139823ec
MV
2350 scc_mgr_set_dq_out1_delay(i,
2351 temp_dq_io_delay1 + shift_dq);
ffb8b66e 2352 else
139823ec
MV
2353 scc_mgr_set_dq_in_delay(p,
2354 temp_dq_io_delay1 + shift_dq);
ffb8b66e
MV
2355
2356 scc_mgr_load_dq(p);
2357
2358 debug_cond(DLEVEL == 2,
2359 "vfifo_center: margin[%u]=[%d,%d]\n", i,
2360 left_edge[i] - shift_dq + (-mid_min),
2361 right_edge[i] + shift_dq - (-mid_min));
2362
2363 /* To determine values for export structures */
2364 if (left_edge[i] - shift_dq + (-mid_min) < *dq_margin)
2365 *dq_margin = left_edge[i] - shift_dq + (-mid_min);
2366
2367 if (right_edge[i] + shift_dq - (-mid_min) < *dqs_margin)
2368 *dqs_margin = right_edge[i] + shift_dq - (-mid_min);
2369 }
ffb8b66e
MV
2370}
2371
ac63b9ad
MV
2372/**
2373 * rw_mgr_mem_calibrate_vfifo_center() - Per-bit deskew DQ and centering
2374 * @rank_bgn: Rank number
2375 * @rw_group: Read/Write Group
2376 * @test_bgn: Rank at which the test begins
2377 * @use_read_test: Perform a read test
2378 * @update_fom: Update FOM
2379 *
2380 * Per-bit deskew DQ and centering.
2381 */
0113c3e1
MV
2382static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
2383 const u32 rw_group, const u32 test_bgn,
2384 const int use_read_test, const int update_fom)
3da42859 2385{
5d6db444
MV
2386 const u32 addr =
2387 SDR_PHYGRP_SCCGRP_ADDRESS + SCC_MGR_DQS_IN_DELAY_OFFSET +
0113c3e1 2388 (rw_group << 2);
3da42859
DN
2389 /*
2390 * Store these as signed since there are comparisons with
2391 * signed numbers.
2392 */
5ded7320 2393 u32 sticky_bit_chk;
1fa0c8c4
MV
2394 int32_t left_edge[rwcfg->mem_dq_per_read_dqs];
2395 int32_t right_edge[rwcfg->mem_dq_per_read_dqs];
3da42859 2396 int32_t orig_mid_min, mid_min;
160695d8 2397 int32_t new_dqs, start_dqs, start_dqs_en = 0, final_dqs_en;
3da42859 2398 int32_t dq_margin, dqs_margin;
5d6db444 2399 int i, min_index;
c4907898 2400 int ret;
3da42859 2401
0113c3e1 2402 debug("%s:%d: %u %u", __func__, __LINE__, rw_group, test_bgn);
3da42859 2403
5d6db444 2404 start_dqs = readl(addr);
160695d8
MV
2405 if (iocfg->shift_dqs_en_when_shift_dqs)
2406 start_dqs_en = readl(addr - iocfg->dqs_en_delay_offset);
3da42859
DN
2407
2408 /* set the left and right edge of each bit to an illegal value */
160695d8 2409 /* use (iocfg->io_in_delay_max + 1) as an illegal value */
3da42859 2410 sticky_bit_chk = 0;
1fa0c8c4 2411 for (i = 0; i < rwcfg->mem_dq_per_read_dqs; i++) {
160695d8
MV
2412 left_edge[i] = iocfg->io_in_delay_max + 1;
2413 right_edge[i] = iocfg->io_in_delay_max + 1;
3da42859
DN
2414 }
2415
3da42859 2416 /* Search for the left edge of the window for each bit */
0113c3e1 2417 search_left_edge(0, rank_bgn, rw_group, rw_group, test_bgn,
0c4be198 2418 &sticky_bit_chk,
71120773 2419 left_edge, right_edge, use_read_test);
3da42859 2420
f0712c35 2421
3da42859 2422 /* Search for the right edge of the window for each bit */
0113c3e1 2423 ret = search_right_edge(0, rank_bgn, rw_group, rw_group,
c4907898 2424 start_dqs, start_dqs_en,
0c4be198 2425 &sticky_bit_chk,
c4907898
MV
2426 left_edge, right_edge, use_read_test);
2427 if (ret) {
3da42859 2428 /*
c4907898
MV
2429 * Restore delay chain settings before letting the loop
2430 * in rw_mgr_mem_calibrate_vfifo to retry different
2431 * dqs/ck relationships.
3da42859 2432 */
0113c3e1 2433 scc_mgr_set_dqs_bus_in_delay(rw_group, start_dqs);
160695d8 2434 if (iocfg->shift_dqs_en_when_shift_dqs)
0113c3e1 2435 scc_mgr_set_dqs_en_delay(rw_group, start_dqs_en);
3da42859 2436
0113c3e1 2437 scc_mgr_load_dqs(rw_group);
c4907898 2438 writel(0, &sdr_scc_mgr->update);
3da42859 2439
c4907898
MV
2440 debug_cond(DLEVEL == 1,
2441 "%s:%d vfifo_center: failed to find edge [%u]: %d %d",
2442 __func__, __LINE__, i, left_edge[i], right_edge[i]);
2443 if (use_read_test) {
0113c3e1 2444 set_failing_group_stage(rw_group *
1fa0c8c4 2445 rwcfg->mem_dq_per_read_dqs + i,
c4907898
MV
2446 CAL_STAGE_VFIFO,
2447 CAL_SUBSTAGE_VFIFO_CENTER);
3da42859 2448 } else {
0113c3e1 2449 set_failing_group_stage(rw_group *
1fa0c8c4 2450 rwcfg->mem_dq_per_read_dqs + i,
c4907898
MV
2451 CAL_STAGE_VFIFO_AFTER_WRITES,
2452 CAL_SUBSTAGE_VFIFO_CENTER);
3da42859 2453 }
98668247 2454 return -EIO;
3da42859
DN
2455 }
2456
afb3eb84 2457 min_index = get_window_mid_index(0, left_edge, right_edge, &mid_min);
3da42859
DN
2458
2459 /* Determine the amount we can change DQS (which is -mid_min) */
2460 orig_mid_min = mid_min;
2461 new_dqs = start_dqs - mid_min;
160695d8
MV
2462 if (new_dqs > iocfg->dqs_in_delay_max)
2463 new_dqs = iocfg->dqs_in_delay_max;
3da42859
DN
2464 else if (new_dqs < 0)
2465 new_dqs = 0;
2466
2467 mid_min = start_dqs - new_dqs;
2468 debug_cond(DLEVEL == 1, "vfifo_center: new mid_min=%d new_dqs=%d\n",
2469 mid_min, new_dqs);
2470
160695d8
MV
2471 if (iocfg->shift_dqs_en_when_shift_dqs) {
2472 if (start_dqs_en - mid_min > iocfg->dqs_en_delay_max)
139823ec
MV
2473 mid_min += start_dqs_en - mid_min -
2474 iocfg->dqs_en_delay_max;
3da42859
DN
2475 else if (start_dqs_en - mid_min < 0)
2476 mid_min += start_dqs_en - mid_min;
2477 }
2478 new_dqs = start_dqs - mid_min;
2479
f0712c35
MV
2480 debug_cond(DLEVEL == 1,
2481 "vfifo_center: start_dqs=%d start_dqs_en=%d new_dqs=%d mid_min=%d\n",
2482 start_dqs,
160695d8 2483 iocfg->shift_dqs_en_when_shift_dqs ? start_dqs_en : -1,
3da42859
DN
2484 new_dqs, mid_min);
2485
ffb8b66e
MV
2486 /* Add delay to bring centre of all DQ windows to the same "level". */
2487 center_dq_windows(0, left_edge, right_edge, mid_min, orig_mid_min,
2488 min_index, test_bgn, &dq_margin, &dqs_margin);
3da42859 2489
3da42859 2490 /* Move DQS-en */
160695d8 2491 if (iocfg->shift_dqs_en_when_shift_dqs) {
5d6db444 2492 final_dqs_en = start_dqs_en - mid_min;
0113c3e1
MV
2493 scc_mgr_set_dqs_en_delay(rw_group, final_dqs_en);
2494 scc_mgr_load_dqs(rw_group);
3da42859
DN
2495 }
2496
2497 /* Move DQS */
0113c3e1
MV
2498 scc_mgr_set_dqs_bus_in_delay(rw_group, new_dqs);
2499 scc_mgr_load_dqs(rw_group);
f0712c35
MV
2500 debug_cond(DLEVEL == 2,
2501 "%s:%d vfifo_center: dq_margin=%d dqs_margin=%d",
2502 __func__, __LINE__, dq_margin, dqs_margin);
3da42859
DN
2503
2504 /*
2505 * Do not remove this line as it makes sure all of our decisions
2506 * have been applied. Apply the update bit.
2507 */
1273dd9e 2508 writel(0, &sdr_scc_mgr->update);
3da42859 2509
98668247
MV
2510 if ((dq_margin < 0) || (dqs_margin < 0))
2511 return -EINVAL;
2512
2513 return 0;
3da42859
DN
2514}
2515
04372fb8
MV
2516/**
2517 * rw_mgr_mem_calibrate_guaranteed_write() - Perform guaranteed write into the device
2518 * @rw_group: Read/Write Group
2519 * @phase: DQ/DQS phase
2520 *
2521 * Because initially no communication ca be reliably performed with the memory
2522 * device, the sequencer uses a guaranteed write mechanism to write data into
2523 * the memory device.
2524 */
2525static int rw_mgr_mem_calibrate_guaranteed_write(const u32 rw_group,
2526 const u32 phase)
2527{
04372fb8
MV
2528 int ret;
2529
2530 /* Set a particular DQ/DQS phase. */
2531 scc_mgr_set_dqdqs_output_phase_all_ranks(rw_group, phase);
2532
2533 debug_cond(DLEVEL == 1, "%s:%d guaranteed write: g=%u p=%u\n",
2534 __func__, __LINE__, rw_group, phase);
2535
2536 /*
2537 * Altera EMI_RM 2015.05.04 :: Figure 1-25
2538 * Load up the patterns used by read calibration using the
2539 * current DQDQS phase.
2540 */
2541 rw_mgr_mem_calibrate_read_load_patterns(0, 1);
2542
2543 if (gbl->phy_debug_mode_flags & PHY_DEBUG_DISABLE_GUARANTEED_READ)
2544 return 0;
2545
2546 /*
2547 * Altera EMI_RM 2015.05.04 :: Figure 1-26
2548 * Back-to-Back reads of the patterns used for calibration.
2549 */
d844c7d4
MV
2550 ret = rw_mgr_mem_calibrate_read_test_patterns(0, rw_group, 1);
2551 if (ret)
04372fb8
MV
2552 debug_cond(DLEVEL == 1,
2553 "%s:%d Guaranteed read test failed: g=%u p=%u\n",
2554 __func__, __LINE__, rw_group, phase);
d844c7d4 2555 return ret;
04372fb8
MV
2556}
2557
f09da11e
MV
2558/**
2559 * rw_mgr_mem_calibrate_dqs_enable_calibration() - DQS Enable Calibration
2560 * @rw_group: Read/Write Group
2561 * @test_bgn: Rank at which the test begins
2562 *
2563 * DQS enable calibration ensures reliable capture of the DQ signal without
2564 * glitches on the DQS line.
2565 */
2566static int rw_mgr_mem_calibrate_dqs_enable_calibration(const u32 rw_group,
2567 const u32 test_bgn)
2568{
f09da11e
MV
2569 /*
2570 * Altera EMI_RM 2015.05.04 :: Figure 1-27
2571 * DQS and DQS Eanble Signal Relationships.
2572 */
28ea827d
MV
2573
2574 /* We start at zero, so have one less dq to devide among */
160695d8 2575 const u32 delay_step = iocfg->io_in_delay_max /
1fa0c8c4 2576 (rwcfg->mem_dq_per_read_dqs - 1);
914546e7 2577 int ret;
28ea827d
MV
2578 u32 i, p, d, r;
2579
2580 debug("%s:%d (%u,%u)\n", __func__, __LINE__, rw_group, test_bgn);
2581
2582 /* Try different dq_in_delays since the DQ path is shorter than DQS. */
1fa0c8c4 2583 for (r = 0; r < rwcfg->mem_number_of_ranks;
28ea827d
MV
2584 r += NUM_RANKS_PER_SHADOW_REG) {
2585 for (i = 0, p = test_bgn, d = 0;
1fa0c8c4 2586 i < rwcfg->mem_dq_per_read_dqs;
28ea827d
MV
2587 i++, p++, d += delay_step) {
2588 debug_cond(DLEVEL == 1,
2589 "%s:%d: g=%u r=%u i=%u p=%u d=%u\n",
2590 __func__, __LINE__, rw_group, r, i, p, d);
2591
2592 scc_mgr_set_dq_in_delay(p, d);
2593 scc_mgr_load_dq(p);
2594 }
2595
2596 writel(0, &sdr_scc_mgr->update);
2597 }
2598
2599 /*
2600 * Try rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase across different
2601 * dq_in_delay values
2602 */
914546e7 2603 ret = rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(rw_group);
28ea827d
MV
2604
2605 debug_cond(DLEVEL == 1,
2606 "%s:%d: g=%u found=%u; Reseting delay chain to zero\n",
914546e7 2607 __func__, __LINE__, rw_group, !ret);
28ea827d 2608
1fa0c8c4 2609 for (r = 0; r < rwcfg->mem_number_of_ranks;
28ea827d
MV
2610 r += NUM_RANKS_PER_SHADOW_REG) {
2611 scc_mgr_apply_group_dq_in_delay(test_bgn, 0);
2612 writel(0, &sdr_scc_mgr->update);
2613 }
2614
914546e7 2615 return ret;
f09da11e
MV
2616}
2617
16cfc4b9
MV
2618/**
2619 * rw_mgr_mem_calibrate_dq_dqs_centering() - Centering DQ/DQS
2620 * @rw_group: Read/Write Group
2621 * @test_bgn: Rank at which the test begins
2622 * @use_read_test: Perform a read test
2623 * @update_fom: Update FOM
2624 *
2625 * The centerin DQ/DQS stage attempts to align DQ and DQS signals on reads
2626 * within a group.
2627 */
2628static int
2629rw_mgr_mem_calibrate_dq_dqs_centering(const u32 rw_group, const u32 test_bgn,
2630 const int use_read_test,
2631 const int update_fom)
2632
2633{
2634 int ret, grp_calibrated;
2635 u32 rank_bgn, sr;
2636
2637 /*
2638 * Altera EMI_RM 2015.05.04 :: Figure 1-28
2639 * Read per-bit deskew can be done on a per shadow register basis.
2640 */
2641 grp_calibrated = 1;
2642 for (rank_bgn = 0, sr = 0;
1fa0c8c4 2643 rank_bgn < rwcfg->mem_number_of_ranks;
16cfc4b9 2644 rank_bgn += NUM_RANKS_PER_SHADOW_REG, sr++) {
16cfc4b9 2645 ret = rw_mgr_mem_calibrate_vfifo_center(rank_bgn, rw_group,
0113c3e1 2646 test_bgn,
16cfc4b9
MV
2647 use_read_test,
2648 update_fom);
98668247 2649 if (!ret)
16cfc4b9
MV
2650 continue;
2651
2652 grp_calibrated = 0;
2653 }
2654
2655 if (!grp_calibrated)
2656 return -EIO;
2657
2658 return 0;
2659}
2660
bce24efa
MV
2661/**
2662 * rw_mgr_mem_calibrate_vfifo() - Calibrate the read valid prediction FIFO
2663 * @rw_group: Read/Write Group
2664 * @test_bgn: Rank at which the test begins
2665 *
2666 * Stage 1: Calibrate the read valid prediction FIFO.
2667 *
2668 * This function implements UniPHY calibration Stage 1, as explained in
2669 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
3da42859 2670 *
bce24efa
MV
2671 * - read valid prediction will consist of finding:
2672 * - DQS enable phase and DQS enable delay (DQS Enable Calibration)
2673 * - DQS input phase and DQS input delay (DQ/DQS Centering)
3da42859
DN
2674 * - we also do a per-bit deskew on the DQ lines.
2675 */
c336ca3e 2676static int rw_mgr_mem_calibrate_vfifo(const u32 rw_group, const u32 test_bgn)
3da42859 2677{
5ded7320
MV
2678 u32 p, d;
2679 u32 dtaps_per_ptap;
2680 u32 failed_substage;
3da42859 2681
04372fb8
MV
2682 int ret;
2683
c336ca3e 2684 debug("%s:%d: %u %u\n", __func__, __LINE__, rw_group, test_bgn);
3da42859 2685
7c0a9df3
MV
2686 /* Update info for sims */
2687 reg_file_set_group(rw_group);
3da42859 2688 reg_file_set_stage(CAL_STAGE_VFIFO);
7c0a9df3 2689 reg_file_set_sub_stage(CAL_SUBSTAGE_GUARANTEED_READ);
3da42859 2690
7c0a9df3
MV
2691 failed_substage = CAL_SUBSTAGE_GUARANTEED_READ;
2692
2693 /* USER Determine number of delay taps for each phase tap. */
160695d8
MV
2694 dtaps_per_ptap = DIV_ROUND_UP(iocfg->delay_per_opa_tap,
2695 iocfg->delay_per_dqs_en_dchain_tap) - 1;
3da42859 2696
fe2d0a2d 2697 for (d = 0; d <= dtaps_per_ptap; d += 2) {
3da42859
DN
2698 /*
2699 * In RLDRAMX we may be messing the delay of pins in
c336ca3e
MV
2700 * the same write rw_group but outside of the current read
2701 * the rw_group, but that's ok because we haven't calibrated
ac70d2f3 2702 * output side yet.
3da42859
DN
2703 */
2704 if (d > 0) {
f51a7d35 2705 scc_mgr_apply_group_all_out_delay_add_all_ranks(
c336ca3e 2706 rw_group, d);
3da42859
DN
2707 }
2708
160695d8 2709 for (p = 0; p <= iocfg->dqdqs_out_phase_max; p++) {
04372fb8
MV
2710 /* 1) Guaranteed Write */
2711 ret = rw_mgr_mem_calibrate_guaranteed_write(rw_group, p);
2712 if (ret)
2713 break;
3da42859 2714
f09da11e
MV
2715 /* 2) DQS Enable Calibration */
2716 ret = rw_mgr_mem_calibrate_dqs_enable_calibration(rw_group,
2717 test_bgn);
2718 if (ret) {
3da42859 2719 failed_substage = CAL_SUBSTAGE_DQS_EN_PHASE;
fe2d0a2d
MV
2720 continue;
2721 }
2722
16cfc4b9 2723 /* 3) Centering DQ/DQS */
fe2d0a2d 2724 /*
16cfc4b9
MV
2725 * If doing read after write calibration, do not update
2726 * FOM now. Do it then.
fe2d0a2d 2727 */
16cfc4b9
MV
2728 ret = rw_mgr_mem_calibrate_dq_dqs_centering(rw_group,
2729 test_bgn, 1, 0);
2730 if (ret) {
fe2d0a2d 2731 failed_substage = CAL_SUBSTAGE_VFIFO_CENTER;
16cfc4b9 2732 continue;
3da42859 2733 }
fe2d0a2d 2734
16cfc4b9
MV
2735 /* All done. */
2736 goto cal_done_ok;
3da42859
DN
2737 }
2738 }
2739
fe2d0a2d 2740 /* Calibration Stage 1 failed. */
c336ca3e 2741 set_failing_group_stage(rw_group, CAL_STAGE_VFIFO, failed_substage);
fe2d0a2d 2742 return 0;
3da42859 2743
fe2d0a2d
MV
2744 /* Calibration Stage 1 completed OK. */
2745cal_done_ok:
3da42859
DN
2746 /*
2747 * Reset the delay chains back to zero if they have moved > 1
2748 * (check for > 1 because loop will increase d even when pass in
2749 * first case).
2750 */
2751 if (d > 2)
c336ca3e 2752 scc_mgr_zero_group(rw_group, 1);
3da42859
DN
2753
2754 return 1;
2755}
2756
78cdd7d0
MV
2757/**
2758 * rw_mgr_mem_calibrate_vfifo_end() - DQ/DQS Centering.
2759 * @rw_group: Read/Write Group
2760 * @test_bgn: Rank at which the test begins
2761 *
2762 * Stage 3: DQ/DQS Centering.
2763 *
2764 * This function implements UniPHY calibration Stage 3, as explained in
2765 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
2766 */
2767static int rw_mgr_mem_calibrate_vfifo_end(const u32 rw_group,
2768 const u32 test_bgn)
3da42859 2769{
78cdd7d0 2770 int ret;
3da42859 2771
78cdd7d0 2772 debug("%s:%d %u %u", __func__, __LINE__, rw_group, test_bgn);
3da42859 2773
78cdd7d0
MV
2774 /* Update info for sims. */
2775 reg_file_set_group(rw_group);
3da42859
DN
2776 reg_file_set_stage(CAL_STAGE_VFIFO_AFTER_WRITES);
2777 reg_file_set_sub_stage(CAL_SUBSTAGE_VFIFO_CENTER);
2778
78cdd7d0
MV
2779 ret = rw_mgr_mem_calibrate_dq_dqs_centering(rw_group, test_bgn, 0, 1);
2780 if (ret)
2781 set_failing_group_stage(rw_group,
3da42859
DN
2782 CAL_STAGE_VFIFO_AFTER_WRITES,
2783 CAL_SUBSTAGE_VFIFO_CENTER);
78cdd7d0 2784 return ret;
3da42859
DN
2785}
2786
c984278a
MV
2787/**
2788 * rw_mgr_mem_calibrate_lfifo() - Minimize latency
2789 *
2790 * Stage 4: Minimize latency.
2791 *
2792 * This function implements UniPHY calibration Stage 4, as explained in
2793 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
2794 * Calibrate LFIFO to find smallest read latency.
2795 */
5ded7320 2796static u32 rw_mgr_mem_calibrate_lfifo(void)
3da42859 2797{
c984278a 2798 int found_one = 0;
3da42859
DN
2799
2800 debug("%s:%d\n", __func__, __LINE__);
2801
c984278a 2802 /* Update info for sims. */
3da42859
DN
2803 reg_file_set_stage(CAL_STAGE_LFIFO);
2804 reg_file_set_sub_stage(CAL_SUBSTAGE_READ_LATENCY);
2805
2806 /* Load up the patterns used by read calibration for all ranks */
2807 rw_mgr_mem_calibrate_read_load_patterns(0, 1);
3da42859 2808
3da42859 2809 do {
1273dd9e 2810 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
3da42859
DN
2811 debug_cond(DLEVEL == 2, "%s:%d lfifo: read_lat=%u",
2812 __func__, __LINE__, gbl->curr_read_lat);
2813
c984278a
MV
2814 if (!rw_mgr_mem_calibrate_read_test_all_ranks(0, NUM_READ_TESTS,
2815 PASS_ALL_BITS, 1))
3da42859 2816 break;
3da42859
DN
2817
2818 found_one = 1;
c984278a
MV
2819 /*
2820 * Reduce read latency and see if things are
2821 * working correctly.
2822 */
3da42859
DN
2823 gbl->curr_read_lat--;
2824 } while (gbl->curr_read_lat > 0);
2825
c984278a 2826 /* Reset the fifos to get pointers to known state. */
1273dd9e 2827 writel(0, &phy_mgr_cmd->fifo_reset);
3da42859
DN
2828
2829 if (found_one) {
c984278a 2830 /* Add a fudge factor to the read latency that was determined */
3da42859 2831 gbl->curr_read_lat += 2;
1273dd9e 2832 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
c984278a
MV
2833 debug_cond(DLEVEL == 2,
2834 "%s:%d lfifo: success: using read_lat=%u\n",
2835 __func__, __LINE__, gbl->curr_read_lat);
3da42859
DN
2836 } else {
2837 set_failing_group_stage(0xff, CAL_STAGE_LFIFO,
2838 CAL_SUBSTAGE_READ_LATENCY);
2839
c984278a
MV
2840 debug_cond(DLEVEL == 2,
2841 "%s:%d lfifo: failed at initial read_lat=%u\n",
2842 __func__, __LINE__, gbl->curr_read_lat);
3da42859 2843 }
c984278a
MV
2844
2845 return found_one;
3da42859
DN
2846}
2847
c8570afa
MV
2848/**
2849 * search_window() - Search for the/part of the window with DM/DQS shift
2850 * @search_dm: If 1, search for the DM shift, if 0, search for DQS shift
2851 * @rank_bgn: Rank number
2852 * @write_group: Write Group
2853 * @bgn_curr: Current window begin
2854 * @end_curr: Current window end
2855 * @bgn_best: Current best window begin
2856 * @end_best: Current best window end
2857 * @win_best: Size of the best window
2858 * @new_dqs: New DQS value (only applicable if search_dm = 0).
2859 *
2860 * Search for the/part of the window with DM/DQS shift.
2861 */
2862static void search_window(const int search_dm,
2863 const u32 rank_bgn, const u32 write_group,
2864 int *bgn_curr, int *end_curr, int *bgn_best,
2865 int *end_best, int *win_best, int new_dqs)
2866{
2867 u32 bit_chk;
160695d8 2868 const int max = iocfg->io_out1_delay_max - new_dqs;
c8570afa
MV
2869 int d, di;
2870
2871 /* Search for the/part of the window with DM/DQS shift. */
2872 for (di = max; di >= 0; di -= DELTA_D) {
2873 if (search_dm) {
2874 d = di;
2875 scc_mgr_apply_group_dm_out1_delay(d);
2876 } else {
2877 /* For DQS, we go from 0...max */
2878 d = max - di;
2879 /*
139823ec
MV
2880 * Note: This only shifts DQS, so are we limiting
2881 * ourselves to width of DQ unnecessarily.
c8570afa
MV
2882 */
2883 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group,
2884 d + new_dqs);
2885 }
2886
2887 writel(0, &sdr_scc_mgr->update);
2888
2889 if (rw_mgr_mem_calibrate_write_test(rank_bgn, write_group, 1,
2890 PASS_ALL_BITS, &bit_chk,
2891 0)) {
2892 /* Set current end of the window. */
2893 *end_curr = search_dm ? -d : d;
2894
2895 /*
2896 * If a starting edge of our window has not been seen
2897 * this is our current start of the DM window.
2898 */
160695d8 2899 if (*bgn_curr == iocfg->io_out1_delay_max + 1)
c8570afa
MV
2900 *bgn_curr = search_dm ? -d : d;
2901
2902 /*
2903 * If current window is bigger than best seen.
2904 * Set best seen to be current window.
2905 */
2906 if ((*end_curr - *bgn_curr + 1) > *win_best) {
2907 *win_best = *end_curr - *bgn_curr + 1;
2908 *bgn_best = *bgn_curr;
2909 *end_best = *end_curr;
2910 }
2911 } else {
2912 /* We just saw a failing test. Reset temp edge. */
160695d8
MV
2913 *bgn_curr = iocfg->io_out1_delay_max + 1;
2914 *end_curr = iocfg->io_out1_delay_max + 1;
c8570afa
MV
2915
2916 /* Early exit is only applicable to DQS. */
2917 if (search_dm)
2918 continue;
2919
2920 /*
2921 * Early exit optimization: if the remaining delay
2922 * chain space is less than already seen largest
2923 * window we can exit.
2924 */
160695d8 2925 if (*win_best - 1 > iocfg->io_out1_delay_max - new_dqs - d)
c8570afa
MV
2926 break;
2927 }
2928 }
2929}
2930
3da42859 2931/*
a386a50e
MV
2932 * rw_mgr_mem_calibrate_writes_center() - Center all windows
2933 * @rank_bgn: Rank number
2934 * @write_group: Write group
2935 * @test_bgn: Rank at which the test begins
2936 *
2937 * Center all windows. Do per-bit-deskew to possibly increase size of
3da42859
DN
2938 * certain windows.
2939 */
3b44f55c
MV
2940static int
2941rw_mgr_mem_calibrate_writes_center(const u32 rank_bgn, const u32 write_group,
2942 const u32 test_bgn)
3da42859 2943{
c8570afa 2944 int i;
3b44f55c
MV
2945 u32 sticky_bit_chk;
2946 u32 min_index;
1fa0c8c4
MV
2947 int left_edge[rwcfg->mem_dq_per_write_dqs];
2948 int right_edge[rwcfg->mem_dq_per_write_dqs];
3b44f55c
MV
2949 int mid;
2950 int mid_min, orig_mid_min;
2951 int new_dqs, start_dqs;
2952 int dq_margin, dqs_margin, dm_margin;
160695d8
MV
2953 int bgn_curr = iocfg->io_out1_delay_max + 1;
2954 int end_curr = iocfg->io_out1_delay_max + 1;
2955 int bgn_best = iocfg->io_out1_delay_max + 1;
2956 int end_best = iocfg->io_out1_delay_max + 1;
3b44f55c 2957 int win_best = 0;
3da42859 2958
c4907898
MV
2959 int ret;
2960
3da42859
DN
2961 debug("%s:%d %u %u", __func__, __LINE__, write_group, test_bgn);
2962
2963 dm_margin = 0;
2964
c6540872
MV
2965 start_dqs = readl((SDR_PHYGRP_SCCGRP_ADDRESS |
2966 SCC_MGR_IO_OUT1_DELAY_OFFSET) +
1fa0c8c4 2967 (rwcfg->mem_dq_per_write_dqs << 2));
3da42859 2968
3b44f55c 2969 /* Per-bit deskew. */
3da42859
DN
2970
2971 /*
3b44f55c 2972 * Set the left and right edge of each bit to an illegal value.
160695d8 2973 * Use (iocfg->io_out1_delay_max + 1) as an illegal value.
3da42859
DN
2974 */
2975 sticky_bit_chk = 0;
1fa0c8c4 2976 for (i = 0; i < rwcfg->mem_dq_per_write_dqs; i++) {
160695d8
MV
2977 left_edge[i] = iocfg->io_out1_delay_max + 1;
2978 right_edge[i] = iocfg->io_out1_delay_max + 1;
3da42859
DN
2979 }
2980
3b44f55c 2981 /* Search for the left edge of the window for each bit. */
71120773 2982 search_left_edge(1, rank_bgn, write_group, 0, test_bgn,
0c4be198 2983 &sticky_bit_chk,
71120773 2984 left_edge, right_edge, 0);
3da42859 2985
3b44f55c 2986 /* Search for the right edge of the window for each bit. */
c4907898
MV
2987 ret = search_right_edge(1, rank_bgn, write_group, 0,
2988 start_dqs, 0,
0c4be198 2989 &sticky_bit_chk,
c4907898
MV
2990 left_edge, right_edge, 0);
2991 if (ret) {
2992 set_failing_group_stage(test_bgn + ret - 1, CAL_STAGE_WRITES,
2993 CAL_SUBSTAGE_WRITES_CENTER);
d043ee5b 2994 return -EINVAL;
3da42859
DN
2995 }
2996
afb3eb84 2997 min_index = get_window_mid_index(1, left_edge, right_edge, &mid_min);
3da42859 2998
3b44f55c 2999 /* Determine the amount we can change DQS (which is -mid_min). */
3da42859
DN
3000 orig_mid_min = mid_min;
3001 new_dqs = start_dqs;
3002 mid_min = 0;
3b44f55c
MV
3003 debug_cond(DLEVEL == 1,
3004 "%s:%d write_center: start_dqs=%d new_dqs=%d mid_min=%d\n",
3005 __func__, __LINE__, start_dqs, new_dqs, mid_min);
3da42859 3006
ffb8b66e
MV
3007 /* Add delay to bring centre of all DQ windows to the same "level". */
3008 center_dq_windows(1, left_edge, right_edge, mid_min, orig_mid_min,
3009 min_index, 0, &dq_margin, &dqs_margin);
3da42859
DN
3010
3011 /* Move DQS */
3012 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group, new_dqs);
1273dd9e 3013 writel(0, &sdr_scc_mgr->update);
3da42859
DN
3014
3015 /* Centre DM */
3016 debug_cond(DLEVEL == 2, "%s:%d write_center: DM\n", __func__, __LINE__);
3017
3018 /*
3b44f55c 3019 * Set the left and right edge of each bit to an illegal value.
160695d8 3020 * Use (iocfg->io_out1_delay_max + 1) as an illegal value.
3da42859 3021 */
160695d8
MV
3022 left_edge[0] = iocfg->io_out1_delay_max + 1;
3023 right_edge[0] = iocfg->io_out1_delay_max + 1;
3da42859 3024
3b44f55c 3025 /* Search for the/part of the window with DM shift. */
c8570afa
MV
3026 search_window(1, rank_bgn, write_group, &bgn_curr, &end_curr,
3027 &bgn_best, &end_best, &win_best, 0);
3da42859 3028
3b44f55c 3029 /* Reset DM delay chains to 0. */
32675249 3030 scc_mgr_apply_group_dm_out1_delay(0);
3da42859
DN
3031
3032 /*
3033 * Check to see if the current window nudges up aganist 0 delay.
3034 * If so we need to continue the search by shifting DQS otherwise DQS
3b44f55c
MV
3035 * search begins as a new search.
3036 */
3da42859 3037 if (end_curr != 0) {
160695d8
MV
3038 bgn_curr = iocfg->io_out1_delay_max + 1;
3039 end_curr = iocfg->io_out1_delay_max + 1;
3da42859
DN
3040 }
3041
3b44f55c 3042 /* Search for the/part of the window with DQS shifts. */
c8570afa
MV
3043 search_window(0, rank_bgn, write_group, &bgn_curr, &end_curr,
3044 &bgn_best, &end_best, &win_best, new_dqs);
3da42859 3045
3b44f55c
MV
3046 /* Assign left and right edge for cal and reporting. */
3047 left_edge[0] = -1 * bgn_best;
3da42859
DN
3048 right_edge[0] = end_best;
3049
3b44f55c
MV
3050 debug_cond(DLEVEL == 2, "%s:%d dm_calib: left=%d right=%d\n",
3051 __func__, __LINE__, left_edge[0], right_edge[0]);
3da42859 3052
3b44f55c 3053 /* Move DQS (back to orig). */
3da42859
DN
3054 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group, new_dqs);
3055
3056 /* Move DM */
3057
3b44f55c 3058 /* Find middle of window for the DM bit. */
3da42859
DN
3059 mid = (left_edge[0] - right_edge[0]) / 2;
3060
3b44f55c 3061 /* Only move right, since we are not moving DQS/DQ. */
3da42859
DN
3062 if (mid < 0)
3063 mid = 0;
3064
3b44f55c 3065 /* dm_marign should fail if we never find a window. */
3da42859
DN
3066 if (win_best == 0)
3067 dm_margin = -1;
3068 else
3069 dm_margin = left_edge[0] - mid;
3070
32675249 3071 scc_mgr_apply_group_dm_out1_delay(mid);
1273dd9e 3072 writel(0, &sdr_scc_mgr->update);
3da42859 3073
3b44f55c
MV
3074 debug_cond(DLEVEL == 2,
3075 "%s:%d dm_calib: left=%d right=%d mid=%d dm_margin=%d\n",
3076 __func__, __LINE__, left_edge[0], right_edge[0],
3077 mid, dm_margin);
3078 /* Export values. */
3da42859
DN
3079 gbl->fom_out += dq_margin + dqs_margin;
3080
3b44f55c
MV
3081 debug_cond(DLEVEL == 2,
3082 "%s:%d write_center: dq_margin=%d dqs_margin=%d dm_margin=%d\n",
3083 __func__, __LINE__, dq_margin, dqs_margin, dm_margin);
3da42859
DN
3084
3085 /*
3086 * Do not remove this line as it makes sure all of our
3087 * decisions have been applied.
3088 */
1273dd9e 3089 writel(0, &sdr_scc_mgr->update);
3b44f55c 3090
d043ee5b
MV
3091 if ((dq_margin < 0) || (dqs_margin < 0) || (dm_margin < 0))
3092 return -EINVAL;
3093
3094 return 0;
3da42859
DN
3095}
3096
db3a6061
MV
3097/**
3098 * rw_mgr_mem_calibrate_writes() - Write Calibration Part One
3099 * @rank_bgn: Rank number
3100 * @group: Read/Write Group
3101 * @test_bgn: Rank at which the test begins
3102 *
3103 * Stage 2: Write Calibration Part One.
3104 *
3105 * This function implements UniPHY calibration Stage 2, as explained in
3106 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
3107 */
3108static int rw_mgr_mem_calibrate_writes(const u32 rank_bgn, const u32 group,
3109 const u32 test_bgn)
3da42859 3110{
db3a6061
MV
3111 int ret;
3112
3113 /* Update info for sims */
3114 debug("%s:%d %u %u\n", __func__, __LINE__, group, test_bgn);
3da42859 3115
db3a6061 3116 reg_file_set_group(group);
3da42859
DN
3117 reg_file_set_stage(CAL_STAGE_WRITES);
3118 reg_file_set_sub_stage(CAL_SUBSTAGE_WRITES_CENTER);
3119
db3a6061 3120 ret = rw_mgr_mem_calibrate_writes_center(rank_bgn, group, test_bgn);
d043ee5b 3121 if (ret)
db3a6061 3122 set_failing_group_stage(group, CAL_STAGE_WRITES,
3da42859 3123 CAL_SUBSTAGE_WRITES_CENTER);
3da42859 3124
d043ee5b 3125 return ret;
3da42859
DN
3126}
3127
4b0ac26a
MV
3128/**
3129 * mem_precharge_and_activate() - Precharge all banks and activate
3130 *
3131 * Precharge all banks and activate row 0 in bank "000..." and bank "111...".
3132 */
3da42859
DN
3133static void mem_precharge_and_activate(void)
3134{
4b0ac26a 3135 int r;
3da42859 3136
1fa0c8c4 3137 for (r = 0; r < rwcfg->mem_number_of_ranks; r++) {
4b0ac26a 3138 /* Set rank. */
3da42859
DN
3139 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_OFF);
3140
4b0ac26a 3141 /* Precharge all banks. */
1fa0c8c4 3142 writel(rwcfg->precharge_all, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1273dd9e 3143 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
3da42859 3144
1273dd9e 3145 writel(0x0F, &sdr_rw_load_mgr_regs->load_cntr0);
1fa0c8c4 3146 writel(rwcfg->activate_0_and_1_wait1,
139823ec 3147 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
3da42859 3148
1273dd9e 3149 writel(0x0F, &sdr_rw_load_mgr_regs->load_cntr1);
1fa0c8c4 3150 writel(rwcfg->activate_0_and_1_wait2,
139823ec 3151 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
3da42859 3152
4b0ac26a 3153 /* Activate rows. */
1fa0c8c4 3154 writel(rwcfg->activate_0_and_1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1273dd9e 3155 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
3da42859
DN
3156 }
3157}
3158
16502a0b
MV
3159/**
3160 * mem_init_latency() - Configure memory RLAT and WLAT settings
3161 *
3162 * Configure memory RLAT and WLAT parameters.
3163 */
3164static void mem_init_latency(void)
3da42859 3165{
3da42859 3166 /*
16502a0b
MV
3167 * For AV/CV, LFIFO is hardened and always runs at full rate
3168 * so max latency in AFI clocks, used here, is correspondingly
3169 * smaller.
3da42859 3170 */
96fd4362 3171 const u32 max_latency = (1 << misccfg->max_latency_count_width) - 1;
16502a0b 3172 u32 rlat, wlat;
3da42859 3173
16502a0b 3174 debug("%s:%d\n", __func__, __LINE__);
3da42859
DN
3175
3176 /*
16502a0b
MV
3177 * Read in write latency.
3178 * WL for Hard PHY does not include additive latency.
3da42859 3179 */
16502a0b
MV
3180 wlat = readl(&data_mgr->t_wl_add);
3181 wlat += readl(&data_mgr->mem_t_add);
3da42859 3182
16502a0b 3183 gbl->rw_wl_nop_cycles = wlat - 1;
3da42859 3184
16502a0b
MV
3185 /* Read in readl latency. */
3186 rlat = readl(&data_mgr->t_rl_add);
3da42859 3187
16502a0b
MV
3188 /* Set a pretty high read latency initially. */
3189 gbl->curr_read_lat = rlat + 16;
3da42859
DN
3190 if (gbl->curr_read_lat > max_latency)
3191 gbl->curr_read_lat = max_latency;
3192
1273dd9e 3193 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
3da42859 3194
16502a0b
MV
3195 /* Advertise write latency. */
3196 writel(wlat, &phy_mgr_cfg->afi_wlat);
3da42859
DN
3197}
3198
51cea0b6
MV
3199/**
3200 * @mem_skip_calibrate() - Set VFIFO and LFIFO to instant-on settings
3201 *
3202 * Set VFIFO and LFIFO to instant-on settings in skip calibration mode.
3203 */
3da42859
DN
3204static void mem_skip_calibrate(void)
3205{
5ded7320
MV
3206 u32 vfifo_offset;
3207 u32 i, j, r;
3da42859
DN
3208
3209 debug("%s:%d\n", __func__, __LINE__);
3210 /* Need to update every shadow register set used by the interface */
1fa0c8c4 3211 for (r = 0; r < rwcfg->mem_number_of_ranks;
51cea0b6 3212 r += NUM_RANKS_PER_SHADOW_REG) {
3da42859
DN
3213 /*
3214 * Set output phase alignment settings appropriate for
3215 * skip calibration.
3216 */
1fa0c8c4 3217 for (i = 0; i < rwcfg->mem_if_read_dqs_width; i++) {
3da42859 3218 scc_mgr_set_dqs_en_phase(i, 0);
160695d8
MV
3219 if (iocfg->dll_chain_length == 6)
3220 scc_mgr_set_dqdqs_output_phase(i, 6);
3221 else
3222 scc_mgr_set_dqdqs_output_phase(i, 7);
3da42859
DN
3223 /*
3224 * Case:33398
3225 *
3226 * Write data arrives to the I/O two cycles before write
3227 * latency is reached (720 deg).
3228 * -> due to bit-slip in a/c bus
3229 * -> to allow board skew where dqs is longer than ck
3230 * -> how often can this happen!?
3231 * -> can claim back some ptaps for high freq
3232 * support if we can relax this, but i digress...
3233 *
3234 * The write_clk leads mem_ck by 90 deg
3235 * The minimum ptap of the OPA is 180 deg
3236 * Each ptap has (360 / IO_DLL_CHAIN_LENGH) deg of delay
3237 * The write_clk is always delayed by 2 ptaps
3238 *
3239 * Hence, to make DQS aligned to CK, we need to delay
3240 * DQS by:
139823ec
MV
3241 * (720 - 90 - 180 - 2) *
3242 * (360 / iocfg->dll_chain_length)
3da42859 3243 *
160695d8 3244 * Dividing the above by (360 / iocfg->dll_chain_length)
3da42859
DN
3245 * gives us the number of ptaps, which simplies to:
3246 *
160695d8 3247 * (1.25 * iocfg->dll_chain_length - 2)
3da42859 3248 */
51cea0b6 3249 scc_mgr_set_dqdqs_output_phase(i,
139823ec 3250 1.25 * iocfg->dll_chain_length - 2);
3da42859 3251 }
1273dd9e
MV
3252 writel(0xff, &sdr_scc_mgr->dqs_ena);
3253 writel(0xff, &sdr_scc_mgr->dqs_io_ena);
3da42859 3254
1fa0c8c4 3255 for (i = 0; i < rwcfg->mem_if_write_dqs_width; i++) {
1273dd9e
MV
3256 writel(i, SDR_PHYGRP_SCCGRP_ADDRESS |
3257 SCC_MGR_GROUP_COUNTER_OFFSET);
3da42859 3258 }
1273dd9e
MV
3259 writel(0xff, &sdr_scc_mgr->dq_ena);
3260 writel(0xff, &sdr_scc_mgr->dm_ena);
3261 writel(0, &sdr_scc_mgr->update);
3da42859
DN
3262 }
3263
3264 /* Compensate for simulation model behaviour */
1fa0c8c4 3265 for (i = 0; i < rwcfg->mem_if_read_dqs_width; i++) {
3da42859
DN
3266 scc_mgr_set_dqs_bus_in_delay(i, 10);
3267 scc_mgr_load_dqs(i);
3268 }
1273dd9e 3269 writel(0, &sdr_scc_mgr->update);
3da42859
DN
3270
3271 /*
3272 * ArriaV has hard FIFOs that can only be initialized by incrementing
3273 * in sequencer.
3274 */
96fd4362 3275 vfifo_offset = misccfg->calib_vfifo_offset;
51cea0b6 3276 for (j = 0; j < vfifo_offset; j++)
1273dd9e 3277 writel(0xff, &phy_mgr_cmd->inc_vfifo_hard_phy);
1273dd9e 3278 writel(0, &phy_mgr_cmd->fifo_reset);
3da42859
DN
3279
3280 /*
51cea0b6
MV
3281 * For Arria V and Cyclone V with hard LFIFO, we get the skip-cal
3282 * setting from generation-time constant.
3da42859 3283 */
96fd4362 3284 gbl->curr_read_lat = misccfg->calib_lfifo_offset;
1273dd9e 3285 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
3da42859
DN
3286}
3287
3589fbfb
MV
3288/**
3289 * mem_calibrate() - Memory calibration entry point.
3290 *
3291 * Perform memory calibration.
3292 */
5ded7320 3293static u32 mem_calibrate(void)
3da42859 3294{
5ded7320
MV
3295 u32 i;
3296 u32 rank_bgn, sr;
3297 u32 write_group, write_test_bgn;
3298 u32 read_group, read_test_bgn;
3299 u32 run_groups, current_run;
3300 u32 failing_groups = 0;
3301 u32 group_failed = 0;
3da42859 3302
1fa0c8c4
MV
3303 const u32 rwdqs_ratio = rwcfg->mem_if_read_dqs_width /
3304 rwcfg->mem_if_write_dqs_width;
33c42bb8 3305
3da42859 3306 debug("%s:%d\n", __func__, __LINE__);
3da42859 3307
16502a0b 3308 /* Initialize the data settings */
3da42859
DN
3309 gbl->error_substage = CAL_SUBSTAGE_NIL;
3310 gbl->error_stage = CAL_STAGE_NIL;
3311 gbl->error_group = 0xff;
3312 gbl->fom_in = 0;
3313 gbl->fom_out = 0;
3314
16502a0b
MV
3315 /* Initialize WLAT and RLAT. */
3316 mem_init_latency();
3317
3318 /* Initialize bit slips. */
3319 mem_precharge_and_activate();
3da42859 3320
1fa0c8c4 3321 for (i = 0; i < rwcfg->mem_if_read_dqs_width; i++) {
1273dd9e
MV
3322 writel(i, SDR_PHYGRP_SCCGRP_ADDRESS |
3323 SCC_MGR_GROUP_COUNTER_OFFSET);
fa5d821b
MV
3324 /* Only needed once to set all groups, pins, DQ, DQS, DM. */
3325 if (i == 0)
3326 scc_mgr_set_hhp_extras();
3327
c5c5f537 3328 scc_set_bypass_mode(i);
3da42859
DN
3329 }
3330
722c9685 3331 /* Calibration is skipped. */
3da42859
DN
3332 if ((dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL) {
3333 /*
3334 * Set VFIFO and LFIFO to instant-on settings in skip
3335 * calibration mode.
3336 */
3337 mem_skip_calibrate();
3da42859 3338
722c9685
MV
3339 /*
3340 * Do not remove this line as it makes sure all of our
3341 * decisions have been applied.
3342 */
3343 writel(0, &sdr_scc_mgr->update);
3344 return 1;
3345 }
3da42859 3346
722c9685
MV
3347 /* Calibration is not skipped. */
3348 for (i = 0; i < NUM_CALIB_REPEAT; i++) {
3349 /*
3350 * Zero all delay chain/phase settings for all
3351 * groups and all shadow register sets.
3352 */
3353 scc_mgr_zero_all();
3354
f085ac3b 3355 run_groups = ~0;
722c9685
MV
3356
3357 for (write_group = 0, write_test_bgn = 0; write_group
1fa0c8c4
MV
3358 < rwcfg->mem_if_write_dqs_width; write_group++,
3359 write_test_bgn += rwcfg->mem_dq_per_write_dqs) {
c452dcd0 3360 /* Initialize the group failure */
722c9685
MV
3361 group_failed = 0;
3362
3363 current_run = run_groups & ((1 <<
3364 RW_MGR_NUM_DQS_PER_WRITE_GROUP) - 1);
3365 run_groups = run_groups >>
3366 RW_MGR_NUM_DQS_PER_WRITE_GROUP;
3367
3368 if (current_run == 0)
3369 continue;
3370
3371 writel(write_group, SDR_PHYGRP_SCCGRP_ADDRESS |
3372 SCC_MGR_GROUP_COUNTER_OFFSET);
3373 scc_mgr_zero_group(write_group, 0);
3374
33c42bb8
MV
3375 for (read_group = write_group * rwdqs_ratio,
3376 read_test_bgn = 0;
c452dcd0 3377 read_group < (write_group + 1) * rwdqs_ratio;
33c42bb8 3378 read_group++,
1fa0c8c4 3379 read_test_bgn += rwcfg->mem_dq_per_read_dqs) {
33c42bb8
MV
3380 if (STATIC_CALIB_STEPS & CALIB_SKIP_VFIFO)
3381 continue;
3382
722c9685 3383 /* Calibrate the VFIFO */
33c42bb8
MV
3384 if (rw_mgr_mem_calibrate_vfifo(read_group,
3385 read_test_bgn))
3386 continue;
3387
139823ec
MV
3388 if (!(gbl->phy_debug_mode_flags &
3389 PHY_DEBUG_SWEEP_ALL_GROUPS))
33c42bb8 3390 return 0;
c452dcd0
MV
3391
3392 /* The group failed, we're done. */
3393 goto grp_failed;
722c9685 3394 }
3da42859 3395
722c9685 3396 /* Calibrate the output side */
c452dcd0 3397 for (rank_bgn = 0, sr = 0;
1fa0c8c4 3398 rank_bgn < rwcfg->mem_number_of_ranks;
c452dcd0
MV
3399 rank_bgn += NUM_RANKS_PER_SHADOW_REG, sr++) {
3400 if (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES)
3401 continue;
4ac21610 3402
c452dcd0 3403 /* Not needed in quick mode! */
139823ec
MV
3404 if (STATIC_CALIB_STEPS &
3405 CALIB_SKIP_DELAY_SWEEPS)
c452dcd0 3406 continue;
4ac21610 3407
c452dcd0 3408 /* Calibrate WRITEs */
db3a6061 3409 if (!rw_mgr_mem_calibrate_writes(rank_bgn,
139823ec
MV
3410 write_group,
3411 write_test_bgn))
c452dcd0 3412 continue;
4ac21610 3413
c452dcd0 3414 group_failed = 1;
139823ec
MV
3415 if (!(gbl->phy_debug_mode_flags &
3416 PHY_DEBUG_SWEEP_ALL_GROUPS))
c452dcd0 3417 return 0;
722c9685 3418 }
3da42859 3419
c452dcd0
MV
3420 /* Some group failed, we're done. */
3421 if (group_failed)
3422 goto grp_failed;
3423
3424 for (read_group = write_group * rwdqs_ratio,
3425 read_test_bgn = 0;
3426 read_group < (write_group + 1) * rwdqs_ratio;
3427 read_group++,
1fa0c8c4 3428 read_test_bgn += rwcfg->mem_dq_per_read_dqs) {
c452dcd0
MV
3429 if (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES)
3430 continue;
3431
78cdd7d0 3432 if (!rw_mgr_mem_calibrate_vfifo_end(read_group,
139823ec 3433 read_test_bgn))
c452dcd0
MV
3434 continue;
3435
139823ec
MV
3436 if (!(gbl->phy_debug_mode_flags &
3437 PHY_DEBUG_SWEEP_ALL_GROUPS))
c452dcd0
MV
3438 return 0;
3439
3440 /* The group failed, we're done. */
3441 goto grp_failed;
3da42859
DN
3442 }
3443
c452dcd0
MV
3444 /* No group failed, continue as usual. */
3445 continue;
3446
3447grp_failed: /* A group failed, increment the counter. */
3448 failing_groups++;
722c9685
MV
3449 }
3450
3451 /*
3452 * USER If there are any failing groups then report
3453 * the failure.
3454 */
3455 if (failing_groups != 0)
3456 return 0;
3457
c50ae303
MV
3458 if (STATIC_CALIB_STEPS & CALIB_SKIP_LFIFO)
3459 continue;
3460
722c9685 3461 /* Calibrate the LFIFO */
c50ae303
MV
3462 if (!rw_mgr_mem_calibrate_lfifo())
3463 return 0;
3da42859
DN
3464 }
3465
3466 /*
3467 * Do not remove this line as it makes sure all of our decisions
3468 * have been applied.
3469 */
1273dd9e 3470 writel(0, &sdr_scc_mgr->update);
3da42859
DN
3471 return 1;
3472}
3473
23a040c0
MV
3474/**
3475 * run_mem_calibrate() - Perform memory calibration
3476 *
3477 * This function triggers the entire memory calibration procedure.
3478 */
3479static int run_mem_calibrate(void)
3da42859 3480{
23a040c0 3481 int pass;
3da42859
DN
3482
3483 debug("%s:%d\n", __func__, __LINE__);
3484
3485 /* Reset pass/fail status shown on afi_cal_success/fail */
1273dd9e 3486 writel(PHY_MGR_CAL_RESET, &phy_mgr_cfg->cal_status);
3da42859 3487
23a040c0
MV
3488 /* Stop tracking manager. */
3489 clrbits_le32(&sdr_ctrl->ctrl_cfg, 1 << 22);
3da42859 3490
9fa9c90e 3491 phy_mgr_initialize();
3da42859
DN
3492 rw_mgr_mem_initialize();
3493
23a040c0 3494 /* Perform the actual memory calibration. */
3da42859
DN
3495 pass = mem_calibrate();
3496
3497 mem_precharge_and_activate();
1273dd9e 3498 writel(0, &phy_mgr_cmd->fifo_reset);
3da42859 3499
23a040c0
MV
3500 /* Handoff. */
3501 rw_mgr_mem_handoff();
3da42859 3502 /*
23a040c0
MV
3503 * In Hard PHY this is a 2-bit control:
3504 * 0: AFI Mux Select
3505 * 1: DDIO Mux Select
3da42859 3506 */
23a040c0 3507 writel(0x2, &phy_mgr_cfg->mux_sel);
3da42859 3508
23a040c0
MV
3509 /* Start tracking manager. */
3510 setbits_le32(&sdr_ctrl->ctrl_cfg, 1 << 22);
3511
3512 return pass;
3513}
3514
3515/**
3516 * debug_mem_calibrate() - Report result of memory calibration
3517 * @pass: Value indicating whether calibration passed or failed
3518 *
3519 * This function reports the results of the memory calibration
3520 * and writes debug information into the register file.
3521 */
3522static void debug_mem_calibrate(int pass)
3523{
5ded7320 3524 u32 debug_info;
3da42859
DN
3525
3526 if (pass) {
3527 printf("%s: CALIBRATION PASSED\n", __FILE__);
3528
3529 gbl->fom_in /= 2;
3530 gbl->fom_out /= 2;
3531
3532 if (gbl->fom_in > 0xff)
3533 gbl->fom_in = 0xff;
3534
3535 if (gbl->fom_out > 0xff)
3536 gbl->fom_out = 0xff;
3537
3538 /* Update the FOM in the register file */
3539 debug_info = gbl->fom_in;
3540 debug_info |= gbl->fom_out << 8;
1273dd9e 3541 writel(debug_info, &sdr_reg_file->fom);
3da42859 3542
1273dd9e
MV
3543 writel(debug_info, &phy_mgr_cfg->cal_debug_info);
3544 writel(PHY_MGR_CAL_SUCCESS, &phy_mgr_cfg->cal_status);
3da42859
DN
3545 } else {
3546 printf("%s: CALIBRATION FAILED\n", __FILE__);
3547
3548 debug_info = gbl->error_stage;
3549 debug_info |= gbl->error_substage << 8;
3550 debug_info |= gbl->error_group << 16;
3551
1273dd9e
MV
3552 writel(debug_info, &sdr_reg_file->failing_stage);
3553 writel(debug_info, &phy_mgr_cfg->cal_debug_info);
3554 writel(PHY_MGR_CAL_FAIL, &phy_mgr_cfg->cal_status);
3da42859
DN
3555
3556 /* Update the failing group/stage in the register file */
3557 debug_info = gbl->error_stage;
3558 debug_info |= gbl->error_substage << 8;
3559 debug_info |= gbl->error_group << 16;
1273dd9e 3560 writel(debug_info, &sdr_reg_file->failing_stage);
3da42859
DN
3561 }
3562
23a040c0 3563 printf("%s: Calibration complete\n", __FILE__);
3da42859
DN
3564}
3565
bb06434b
MV
3566/**
3567 * hc_initialize_rom_data() - Initialize ROM data
3568 *
3569 * Initialize ROM data.
3570 */
3da42859
DN
3571static void hc_initialize_rom_data(void)
3572{
04955cf2
MV
3573 unsigned int nelem = 0;
3574 const u32 *rom_init;
bb06434b 3575 u32 i, addr;
3da42859 3576
04955cf2 3577 socfpga_get_seq_inst_init(&rom_init, &nelem);
c4815f76 3578 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_INST_ROM_WRITE_OFFSET;
04955cf2
MV
3579 for (i = 0; i < nelem; i++)
3580 writel(rom_init[i], addr + (i << 2));
3da42859 3581
04955cf2 3582 socfpga_get_seq_ac_init(&rom_init, &nelem);
c4815f76 3583 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_AC_ROM_WRITE_OFFSET;
04955cf2
MV
3584 for (i = 0; i < nelem; i++)
3585 writel(rom_init[i], addr + (i << 2));
3da42859
DN
3586}
3587
9c1ab2ca
MV
3588/**
3589 * initialize_reg_file() - Initialize SDR register file
3590 *
3591 * Initialize SDR register file.
3592 */
3da42859
DN
3593static void initialize_reg_file(void)
3594{
3da42859 3595 /* Initialize the register file with the correct data */
96fd4362 3596 writel(misccfg->reg_file_init_seq_signature, &sdr_reg_file->signature);
1273dd9e
MV
3597 writel(0, &sdr_reg_file->debug_data_addr);
3598 writel(0, &sdr_reg_file->cur_stage);
3599 writel(0, &sdr_reg_file->fom);
3600 writel(0, &sdr_reg_file->failing_stage);
3601 writel(0, &sdr_reg_file->debug1);
3602 writel(0, &sdr_reg_file->debug2);
3da42859
DN
3603}
3604
2ca151f8
MV
3605/**
3606 * initialize_hps_phy() - Initialize HPS PHY
3607 *
3608 * Initialize HPS PHY.
3609 */
3da42859
DN
3610static void initialize_hps_phy(void)
3611{
5ded7320 3612 u32 reg;
3da42859
DN
3613 /*
3614 * Tracking also gets configured here because it's in the
3615 * same register.
3616 */
5ded7320
MV
3617 u32 trk_sample_count = 7500;
3618 u32 trk_long_idle_sample_count = (10 << 16) | 100;
3da42859
DN
3619 /*
3620 * Format is number of outer loops in the 16 MSB, sample
3621 * count in 16 LSB.
3622 */
3623
3624 reg = 0;
3625 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_ACDELAYEN_SET(2);
3626 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQDELAYEN_SET(1);
3627 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQSDELAYEN_SET(1);
3628 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQSLOGICDELAYEN_SET(1);
3629 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_RESETDELAYEN_SET(0);
3630 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_LPDDRDIS_SET(1);
3631 /*
3632 * This field selects the intrinsic latency to RDATA_EN/FULL path.
3633 * 00-bypass, 01- add 5 cycles, 10- add 10 cycles, 11- add 15 cycles.
3634 */
3635 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_ADDLATSEL_SET(0);
3636 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_SAMPLECOUNT_19_0_SET(
3637 trk_sample_count);
6cb9f167 3638 writel(reg, &sdr_ctrl->phy_ctrl0);
3da42859
DN
3639
3640 reg = 0;
3641 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_SAMPLECOUNT_31_20_SET(
3642 trk_sample_count >>
3643 SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_SAMPLECOUNT_19_0_WIDTH);
3644 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_LONGIDLESAMPLECOUNT_19_0_SET(
3645 trk_long_idle_sample_count);
6cb9f167 3646 writel(reg, &sdr_ctrl->phy_ctrl1);
3da42859
DN
3647
3648 reg = 0;
3649 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_2_LONGIDLESAMPLECOUNT_31_20_SET(
3650 trk_long_idle_sample_count >>
3651 SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_LONGIDLESAMPLECOUNT_19_0_WIDTH);
6cb9f167 3652 writel(reg, &sdr_ctrl->phy_ctrl2);
3da42859
DN
3653}
3654
880e46f2
MV
3655/**
3656 * initialize_tracking() - Initialize tracking
3657 *
3658 * Initialize the register file with usable initial data.
3659 */
3da42859
DN
3660static void initialize_tracking(void)
3661{
880e46f2
MV
3662 /*
3663 * Initialize the register file with the correct data.
3664 * Compute usable version of value in case we skip full
3665 * computation later.
3666 */
139823ec
MV
3667 writel(DIV_ROUND_UP(iocfg->delay_per_opa_tap,
3668 iocfg->delay_per_dchain_tap) - 1,
880e46f2
MV
3669 &sdr_reg_file->dtaps_per_ptap);
3670
3671 /* trk_sample_count */
3672 writel(7500, &sdr_reg_file->trk_sample_count);
3673
3674 /* longidle outer loop [15:0] */
3675 writel((10 << 16) | (100 << 0), &sdr_reg_file->trk_longidle);
3da42859
DN
3676
3677 /*
880e46f2
MV
3678 * longidle sample count [31:24]
3679 * trfc, worst case of 933Mhz 4Gb [23:16]
3680 * trcd, worst case [15:8]
3681 * vfifo wait [7:0]
3da42859 3682 */
880e46f2
MV
3683 writel((243 << 24) | (14 << 16) | (10 << 8) | (4 << 0),
3684 &sdr_reg_file->delays);
3da42859 3685
880e46f2 3686 /* mux delay */
1fa0c8c4
MV
3687 writel((rwcfg->idle << 24) | (rwcfg->activate_1 << 16) |
3688 (rwcfg->sgle_read << 8) | (rwcfg->precharge_all << 0),
880e46f2
MV
3689 &sdr_reg_file->trk_rw_mgr_addr);
3690
1fa0c8c4 3691 writel(rwcfg->mem_if_read_dqs_width,
880e46f2
MV
3692 &sdr_reg_file->trk_read_dqs_width);
3693
3694 /* trefi [7:0] */
1fa0c8c4 3695 writel((rwcfg->refresh_all << 24) | (1000 << 0),
880e46f2 3696 &sdr_reg_file->trk_rfsh);
3da42859
DN
3697}
3698
3699int sdram_calibration_full(void)
3700{
3701 struct param_type my_param;
3702 struct gbl_type my_gbl;
5ded7320 3703 u32 pass;
84e0b0cf
MV
3704
3705 memset(&my_param, 0, sizeof(my_param));
3706 memset(&my_gbl, 0, sizeof(my_gbl));
3da42859
DN
3707
3708 param = &my_param;
3709 gbl = &my_gbl;
3710
d718a26b 3711 rwcfg = socfpga_get_sdram_rwmgr_config();
10c14261 3712 iocfg = socfpga_get_sdram_io_config();
042ff2d0 3713 misccfg = socfpga_get_sdram_misc_config();
d718a26b 3714
3da42859
DN
3715 /* Set the calibration enabled by default */
3716 gbl->phy_debug_mode_flags |= PHY_DEBUG_ENABLE_CAL_RPT;
3717 /*
3718 * Only sweep all groups (regardless of fail state) by default
3719 * Set enabled read test by default.
3720 */
3721#if DISABLE_GUARANTEED_READ
3722 gbl->phy_debug_mode_flags |= PHY_DEBUG_DISABLE_GUARANTEED_READ;
3723#endif
3724 /* Initialize the register file */
3725 initialize_reg_file();
3726
3727 /* Initialize any PHY CSR */
3728 initialize_hps_phy();
3729
3730 scc_mgr_initialize();
3731
3732 initialize_tracking();
3733
3da42859
DN
3734 printf("%s: Preparing to start memory calibration\n", __FILE__);
3735
3736 debug("%s:%d\n", __func__, __LINE__);
23f62b36
MV
3737 debug_cond(DLEVEL == 1,
3738 "DDR3 FULL_RATE ranks=%u cs/dimm=%u dq/dqs=%u,%u vg/dqs=%u,%u ",
1fa0c8c4
MV
3739 rwcfg->mem_number_of_ranks, rwcfg->mem_number_of_cs_per_dimm,
3740 rwcfg->mem_dq_per_read_dqs, rwcfg->mem_dq_per_write_dqs,
3741 rwcfg->mem_virtual_groups_per_read_dqs,
3742 rwcfg->mem_virtual_groups_per_write_dqs);
23f62b36
MV
3743 debug_cond(DLEVEL == 1,
3744 "dqs=%u,%u dq=%u dm=%u ptap_delay=%u dtap_delay=%u ",
1fa0c8c4
MV
3745 rwcfg->mem_if_read_dqs_width, rwcfg->mem_if_write_dqs_width,
3746 rwcfg->mem_data_width, rwcfg->mem_data_mask_width,
160695d8 3747 iocfg->delay_per_opa_tap, iocfg->delay_per_dchain_tap);
23f62b36 3748 debug_cond(DLEVEL == 1, "dtap_dqsen_delay=%u, dll=%u",
160695d8 3749 iocfg->delay_per_dqs_en_dchain_tap, iocfg->dll_chain_length);
139823ec
MV
3750 debug_cond(DLEVEL == 1,
3751 "max values: en_p=%u dqdqs_p=%u en_d=%u dqs_in_d=%u ",
160695d8
MV
3752 iocfg->dqs_en_phase_max, iocfg->dqdqs_out_phase_max,
3753 iocfg->dqs_en_delay_max, iocfg->dqs_in_delay_max);
23f62b36 3754 debug_cond(DLEVEL == 1, "io_in_d=%u io_out1_d=%u io_out2_d=%u ",
160695d8
MV
3755 iocfg->io_in_delay_max, iocfg->io_out1_delay_max,
3756 iocfg->io_out2_delay_max);
23f62b36 3757 debug_cond(DLEVEL == 1, "dqs_in_reserve=%u dqs_out_reserve=%u\n",
160695d8 3758 iocfg->dqs_in_reserve, iocfg->dqs_out_reserve);
3da42859
DN
3759
3760 hc_initialize_rom_data();
3761
3762 /* update info for sims */
3763 reg_file_set_stage(CAL_STAGE_NIL);
3764 reg_file_set_group(0);
3765
3766 /*
3767 * Load global needed for those actions that require
3768 * some dynamic calibration support.
3769 */
3770 dyn_calib_steps = STATIC_CALIB_STEPS;
3771 /*
3772 * Load global to allow dynamic selection of delay loop settings
3773 * based on calibration mode.
3774 */
3775 if (!(dyn_calib_steps & CALIB_SKIP_DELAY_LOOPS))
3776 skip_delay_mask = 0xff;
3777 else
3778 skip_delay_mask = 0x0;
3779
3780 pass = run_mem_calibrate();
23a040c0 3781 debug_mem_calibrate(pass);
3da42859
DN
3782 return pass;
3783}