blob: 659c0d84ca3d3ec71527b81802fad13c4d157615 [file] [log] [blame]
Dinh Nguyen3da42852015-06-02 22:52:49 -05001/*
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>
Marek Vasut04372fb2015-07-18 02:46:56 +020010#include <errno.h>
Dinh Nguyen3da42852015-06-02 22:52:49 -050011#include "sequencer.h"
12#include "sequencer_auto.h"
13#include "sequencer_auto_ac_init.h"
14#include "sequencer_auto_inst_init.h"
15#include "sequencer_defines.h"
16
Dinh Nguyen3da42852015-06-02 22:52:49 -050017static struct socfpga_sdr_rw_load_manager *sdr_rw_load_mgr_regs =
Marek Vasut6afb4fe2015-07-12 18:46:52 +020018 (struct socfpga_sdr_rw_load_manager *)(SDR_PHYGRP_RWMGRGRP_ADDRESS | 0x800);
Dinh Nguyen3da42852015-06-02 22:52:49 -050019
20static struct socfpga_sdr_rw_load_jump_manager *sdr_rw_load_jump_mgr_regs =
Marek Vasut6afb4fe2015-07-12 18:46:52 +020021 (struct socfpga_sdr_rw_load_jump_manager *)(SDR_PHYGRP_RWMGRGRP_ADDRESS | 0xC00);
Dinh Nguyen3da42852015-06-02 22:52:49 -050022
23static struct socfpga_sdr_reg_file *sdr_reg_file =
Marek Vasuta1c654a2015-07-12 18:31:05 +020024 (struct socfpga_sdr_reg_file *)SDR_PHYGRP_REGFILEGRP_ADDRESS;
Dinh Nguyen3da42852015-06-02 22:52:49 -050025
26static struct socfpga_sdr_scc_mgr *sdr_scc_mgr =
Marek Vasute79025a2015-07-12 18:42:34 +020027 (struct socfpga_sdr_scc_mgr *)(SDR_PHYGRP_SCCGRP_ADDRESS | 0xe00);
Dinh Nguyen3da42852015-06-02 22:52:49 -050028
29static struct socfpga_phy_mgr_cmd *phy_mgr_cmd =
Marek Vasut1bc6f142015-07-12 18:54:37 +020030 (struct socfpga_phy_mgr_cmd *)SDR_PHYGRP_PHYMGRGRP_ADDRESS;
Dinh Nguyen3da42852015-06-02 22:52:49 -050031
32static struct socfpga_phy_mgr_cfg *phy_mgr_cfg =
Marek Vasut1bc6f142015-07-12 18:54:37 +020033 (struct socfpga_phy_mgr_cfg *)(SDR_PHYGRP_PHYMGRGRP_ADDRESS | 0x40);
Dinh Nguyen3da42852015-06-02 22:52:49 -050034
35static struct socfpga_data_mgr *data_mgr =
Marek Vasutc4815f72015-07-12 19:03:33 +020036 (struct socfpga_data_mgr *)SDR_PHYGRP_DATAMGRGRP_ADDRESS;
Dinh Nguyen3da42852015-06-02 22:52:49 -050037
Marek Vasut6cb9f162015-07-12 20:49:39 +020038static struct socfpga_sdr_ctrl *sdr_ctrl =
39 (struct socfpga_sdr_ctrl *)SDR_CTRLGRP_ADDRESS;
40
Dinh Nguyen3da42852015-06-02 22:52:49 -050041#define DELTA_D 1
Dinh Nguyen3da42852015-06-02 22:52:49 -050042
43/*
44 * In order to reduce ROM size, most of the selectable calibration steps are
45 * decided at compile time based on the user's calibration mode selection,
46 * as captured by the STATIC_CALIB_STEPS selection below.
47 *
48 * However, to support simulation-time selection of fast simulation mode, where
49 * we skip everything except the bare minimum, we need a few of the steps to
50 * be dynamic. In those cases, we either use the DYNAMIC_CALIB_STEPS for the
51 * check, which is based on the rtl-supplied value, or we dynamically compute
52 * the value to use based on the dynamically-chosen calibration mode
53 */
54
55#define DLEVEL 0
56#define STATIC_IN_RTL_SIM 0
57#define STATIC_SKIP_DELAY_LOOPS 0
58
59#define STATIC_CALIB_STEPS (STATIC_IN_RTL_SIM | CALIB_SKIP_FULL_TEST | \
60 STATIC_SKIP_DELAY_LOOPS)
61
62/* calibration steps requested by the rtl */
63uint16_t dyn_calib_steps;
64
65/*
66 * To make CALIB_SKIP_DELAY_LOOPS a dynamic conditional option
67 * instead of static, we use boolean logic to select between
68 * non-skip and skip values
69 *
70 * The mask is set to include all bits when not-skipping, but is
71 * zero when skipping
72 */
73
74uint16_t skip_delay_mask; /* mask off bits when skipping/not-skipping */
75
76#define SKIP_DELAY_LOOP_VALUE_OR_ZERO(non_skip_value) \
77 ((non_skip_value) & skip_delay_mask)
78
79struct gbl_type *gbl;
80struct param_type *param;
81uint32_t curr_shadow_reg;
82
Dinh Nguyen3da42852015-06-02 22:52:49 -050083static void set_failing_group_stage(uint32_t group, uint32_t stage,
84 uint32_t substage)
85{
86 /*
87 * Only set the global stage if there was not been any other
88 * failing group
89 */
90 if (gbl->error_stage == CAL_STAGE_NIL) {
91 gbl->error_substage = substage;
92 gbl->error_stage = stage;
93 gbl->error_group = group;
94 }
95}
96
Marek Vasut2c0d2d92015-07-12 21:10:24 +020097static void reg_file_set_group(u16 set_group)
Dinh Nguyen3da42852015-06-02 22:52:49 -050098{
Marek Vasut2c0d2d92015-07-12 21:10:24 +020099 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xffff0000, set_group << 16);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500100}
101
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200102static void reg_file_set_stage(u8 set_stage)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500103{
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200104 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xffff, set_stage & 0xff);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500105}
106
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200107static void reg_file_set_sub_stage(u8 set_sub_stage)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500108{
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200109 set_sub_stage &= 0xff;
110 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xff00, set_sub_stage << 8);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500111}
112
Marek Vasut7c89c2d2015-07-17 01:36:32 +0200113/**
114 * phy_mgr_initialize() - Initialize PHY Manager
115 *
116 * Initialize PHY Manager.
117 */
Marek Vasut9fa9c902015-07-17 01:12:07 +0200118static void phy_mgr_initialize(void)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500119{
Marek Vasut7c89c2d2015-07-17 01:36:32 +0200120 u32 ratio;
121
Dinh Nguyen3da42852015-06-02 22:52:49 -0500122 debug("%s:%d\n", __func__, __LINE__);
Marek Vasut7c89c2d2015-07-17 01:36:32 +0200123 /* Calibration has control over path to memory */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500124 /*
125 * In Hard PHY this is a 2-bit control:
126 * 0: AFI Mux Select
127 * 1: DDIO Mux Select
128 */
Marek Vasut1273dd92015-07-12 21:05:08 +0200129 writel(0x3, &phy_mgr_cfg->mux_sel);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500130
131 /* USER memory clock is not stable we begin initialization */
Marek Vasut1273dd92015-07-12 21:05:08 +0200132 writel(0, &phy_mgr_cfg->reset_mem_stbl);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500133
134 /* USER calibration status all set to zero */
Marek Vasut1273dd92015-07-12 21:05:08 +0200135 writel(0, &phy_mgr_cfg->cal_status);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500136
Marek Vasut1273dd92015-07-12 21:05:08 +0200137 writel(0, &phy_mgr_cfg->cal_debug_info);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500138
Marek Vasut7c89c2d2015-07-17 01:36:32 +0200139 /* Init params only if we do NOT skip calibration. */
140 if ((dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL)
141 return;
142
143 ratio = RW_MGR_MEM_DQ_PER_READ_DQS /
144 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
145 param->read_correct_mask_vg = (1 << ratio) - 1;
146 param->write_correct_mask_vg = (1 << ratio) - 1;
147 param->read_correct_mask = (1 << RW_MGR_MEM_DQ_PER_READ_DQS) - 1;
148 param->write_correct_mask = (1 << RW_MGR_MEM_DQ_PER_WRITE_DQS) - 1;
149 ratio = RW_MGR_MEM_DATA_WIDTH /
150 RW_MGR_MEM_DATA_MASK_WIDTH;
151 param->dm_correct_mask = (1 << ratio) - 1;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500152}
153
Marek Vasut080bf642015-07-20 08:15:57 +0200154/**
155 * set_rank_and_odt_mask() - Set Rank and ODT mask
156 * @rank: Rank mask
157 * @odt_mode: ODT mode, OFF or READ_WRITE
158 *
159 * Set Rank and ODT mask (On-Die Termination).
160 */
Marek Vasutb2dfd102015-07-20 08:03:11 +0200161static void set_rank_and_odt_mask(const u32 rank, const u32 odt_mode)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500162{
Marek Vasutb2dfd102015-07-20 08:03:11 +0200163 u32 odt_mask_0 = 0;
164 u32 odt_mask_1 = 0;
165 u32 cs_and_odt_mask;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500166
Marek Vasutb2dfd102015-07-20 08:03:11 +0200167 if (odt_mode == RW_MGR_ODT_MODE_OFF) {
168 odt_mask_0 = 0x0;
169 odt_mask_1 = 0x0;
170 } else { /* RW_MGR_ODT_MODE_READ_WRITE */
Marek Vasut287cdf62015-07-20 08:09:05 +0200171 switch (RW_MGR_MEM_NUMBER_OF_RANKS) {
172 case 1: /* 1 Rank */
173 /* Read: ODT = 0 ; Write: ODT = 1 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500174 odt_mask_0 = 0x0;
175 odt_mask_1 = 0x1;
Marek Vasut287cdf62015-07-20 08:09:05 +0200176 break;
177 case 2: /* 2 Ranks */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500178 if (RW_MGR_MEM_NUMBER_OF_CS_PER_DIMM == 1) {
Marek Vasut080bf642015-07-20 08:15:57 +0200179 /*
180 * - Dual-Slot , Single-Rank (1 CS per DIMM)
181 * OR
182 * - RDIMM, 4 total CS (2 CS per DIMM, 2 DIMM)
183 *
184 * Since MEM_NUMBER_OF_RANKS is 2, they
185 * are both single rank with 2 CS each
186 * (special for RDIMM).
187 *
Dinh Nguyen3da42852015-06-02 22:52:49 -0500188 * Read: Turn on ODT on the opposite rank
189 * Write: Turn on ODT on all ranks
190 */
191 odt_mask_0 = 0x3 & ~(1 << rank);
192 odt_mask_1 = 0x3;
193 } else {
194 /*
Marek Vasut080bf642015-07-20 08:15:57 +0200195 * - Single-Slot , Dual-Rank (2 CS per DIMM)
196 *
197 * Read: Turn on ODT off on all ranks
198 * Write: Turn on ODT on active rank
Dinh Nguyen3da42852015-06-02 22:52:49 -0500199 */
200 odt_mask_0 = 0x0;
201 odt_mask_1 = 0x3 & (1 << rank);
202 }
Marek Vasut287cdf62015-07-20 08:09:05 +0200203 break;
204 case 4: /* 4 Ranks */
205 /* Read:
Dinh Nguyen3da42852015-06-02 22:52:49 -0500206 * ----------+-----------------------+
Dinh Nguyen3da42852015-06-02 22:52:49 -0500207 * | ODT |
208 * Read From +-----------------------+
209 * Rank | 3 | 2 | 1 | 0 |
210 * ----------+-----+-----+-----+-----+
211 * 0 | 0 | 1 | 0 | 0 |
212 * 1 | 1 | 0 | 0 | 0 |
213 * 2 | 0 | 0 | 0 | 1 |
214 * 3 | 0 | 0 | 1 | 0 |
215 * ----------+-----+-----+-----+-----+
216 *
217 * Write:
218 * ----------+-----------------------+
Dinh Nguyen3da42852015-06-02 22:52:49 -0500219 * | ODT |
220 * Write To +-----------------------+
221 * Rank | 3 | 2 | 1 | 0 |
222 * ----------+-----+-----+-----+-----+
223 * 0 | 0 | 1 | 0 | 1 |
224 * 1 | 1 | 0 | 1 | 0 |
225 * 2 | 0 | 1 | 0 | 1 |
226 * 3 | 1 | 0 | 1 | 0 |
227 * ----------+-----+-----+-----+-----+
228 */
229 switch (rank) {
230 case 0:
231 odt_mask_0 = 0x4;
232 odt_mask_1 = 0x5;
233 break;
234 case 1:
235 odt_mask_0 = 0x8;
236 odt_mask_1 = 0xA;
237 break;
238 case 2:
239 odt_mask_0 = 0x1;
240 odt_mask_1 = 0x5;
241 break;
242 case 3:
243 odt_mask_0 = 0x2;
244 odt_mask_1 = 0xA;
245 break;
246 }
Marek Vasut287cdf62015-07-20 08:09:05 +0200247 break;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500248 }
Dinh Nguyen3da42852015-06-02 22:52:49 -0500249 }
250
Marek Vasutb2dfd102015-07-20 08:03:11 +0200251 cs_and_odt_mask = (0xFF & ~(1 << rank)) |
252 ((0xFF & odt_mask_0) << 8) |
253 ((0xFF & odt_mask_1) << 16);
Marek Vasut1273dd92015-07-12 21:05:08 +0200254 writel(cs_and_odt_mask, SDR_PHYGRP_RWMGRGRP_ADDRESS |
255 RW_MGR_SET_CS_AND_ODT_MASK_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500256}
257
Marek Vasutc76976d2015-07-12 22:28:33 +0200258/**
259 * scc_mgr_set() - Set SCC Manager register
260 * @off: Base offset in SCC Manager space
261 * @grp: Read/Write group
262 * @val: Value to be set
263 *
264 * This function sets the SCC Manager (Scan Chain Control Manager) register.
265 */
266static void scc_mgr_set(u32 off, u32 grp, u32 val)
267{
268 writel(val, SDR_PHYGRP_SCCGRP_ADDRESS | off | (grp << 2));
269}
270
Marek Vasute893f4d2015-07-20 07:16:42 +0200271/**
272 * scc_mgr_initialize() - Initialize SCC Manager registers
273 *
274 * Initialize SCC Manager registers.
275 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500276static void scc_mgr_initialize(void)
277{
Dinh Nguyen3da42852015-06-02 22:52:49 -0500278 /*
Marek Vasute893f4d2015-07-20 07:16:42 +0200279 * Clear register file for HPS. 16 (2^4) is the size of the
280 * full register file in the scc mgr:
281 * RFILE_DEPTH = 1 + log2(MEM_DQ_PER_DQS + 1 + MEM_DM_PER_DQS +
282 * MEM_IF_READ_DQS_WIDTH - 1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500283 */
Marek Vasutc76976d2015-07-12 22:28:33 +0200284 int i;
Marek Vasute893f4d2015-07-20 07:16:42 +0200285
Dinh Nguyen3da42852015-06-02 22:52:49 -0500286 for (i = 0; i < 16; i++) {
Marek Vasut7ac40d22015-06-26 18:56:54 +0200287 debug_cond(DLEVEL == 1, "%s:%d: Clearing SCC RFILE index %u\n",
Dinh Nguyen3da42852015-06-02 22:52:49 -0500288 __func__, __LINE__, i);
Marek Vasutc76976d2015-07-12 22:28:33 +0200289 scc_mgr_set(SCC_MGR_HHP_RFILE_OFFSET, 0, i);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500290 }
291}
292
Marek Vasut5ff825b2015-07-12 22:11:55 +0200293static void scc_mgr_set_dqdqs_output_phase(uint32_t write_group, uint32_t phase)
294{
Marek Vasutc76976d2015-07-12 22:28:33 +0200295 scc_mgr_set(SCC_MGR_DQDQS_OUT_PHASE_OFFSET, write_group, phase);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200296}
297
298static void scc_mgr_set_dqs_bus_in_delay(uint32_t read_group, uint32_t delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500299{
Marek Vasutc76976d2015-07-12 22:28:33 +0200300 scc_mgr_set(SCC_MGR_DQS_IN_DELAY_OFFSET, read_group, delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500301}
302
Dinh Nguyen3da42852015-06-02 22:52:49 -0500303static void scc_mgr_set_dqs_en_phase(uint32_t read_group, uint32_t phase)
304{
Marek Vasutc76976d2015-07-12 22:28:33 +0200305 scc_mgr_set(SCC_MGR_DQS_EN_PHASE_OFFSET, read_group, phase);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500306}
307
Marek Vasut5ff825b2015-07-12 22:11:55 +0200308static void scc_mgr_set_dqs_en_delay(uint32_t read_group, uint32_t delay)
309{
Marek Vasutc76976d2015-07-12 22:28:33 +0200310 scc_mgr_set(SCC_MGR_DQS_EN_DELAY_OFFSET, read_group, delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200311}
312
Marek Vasut32675242015-07-17 06:07:13 +0200313static void scc_mgr_set_dqs_io_in_delay(uint32_t delay)
Marek Vasut5ff825b2015-07-12 22:11:55 +0200314{
Marek Vasutc76976d2015-07-12 22:28:33 +0200315 scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, RW_MGR_MEM_DQ_PER_WRITE_DQS,
316 delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200317}
318
319static void scc_mgr_set_dq_in_delay(uint32_t dq_in_group, uint32_t delay)
320{
Marek Vasutc76976d2015-07-12 22:28:33 +0200321 scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, dq_in_group, delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200322}
323
324static void scc_mgr_set_dq_out1_delay(uint32_t dq_in_group, uint32_t delay)
325{
Marek Vasutc76976d2015-07-12 22:28:33 +0200326 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET, dq_in_group, delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200327}
328
Marek Vasut32675242015-07-17 06:07:13 +0200329static void scc_mgr_set_dqs_out1_delay(uint32_t delay)
Marek Vasut5ff825b2015-07-12 22:11:55 +0200330{
Marek Vasutc76976d2015-07-12 22:28:33 +0200331 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET, RW_MGR_MEM_DQ_PER_WRITE_DQS,
332 delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200333}
334
335static void scc_mgr_set_dm_out1_delay(uint32_t dm, uint32_t delay)
336{
Marek Vasutc76976d2015-07-12 22:28:33 +0200337 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET,
338 RW_MGR_MEM_DQ_PER_WRITE_DQS + 1 + dm,
339 delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200340}
341
342/* load up dqs config settings */
343static void scc_mgr_load_dqs(uint32_t dqs)
344{
345 writel(dqs, &sdr_scc_mgr->dqs_ena);
346}
347
348/* load up dqs io config settings */
349static void scc_mgr_load_dqs_io(void)
350{
351 writel(0, &sdr_scc_mgr->dqs_io_ena);
352}
353
354/* load up dq config settings */
355static void scc_mgr_load_dq(uint32_t dq_in_group)
356{
357 writel(dq_in_group, &sdr_scc_mgr->dq_ena);
358}
359
360/* load up dm config settings */
361static void scc_mgr_load_dm(uint32_t dm)
362{
363 writel(dm, &sdr_scc_mgr->dm_ena);
364}
365
Marek Vasut0b69b802015-07-12 23:25:21 +0200366/**
367 * scc_mgr_set_all_ranks() - Set SCC Manager register for all ranks
368 * @off: Base offset in SCC Manager space
369 * @grp: Read/Write group
370 * @val: Value to be set
371 * @update: If non-zero, trigger SCC Manager update for all ranks
372 *
373 * This function sets the SCC Manager (Scan Chain Control Manager) register
374 * and optionally triggers the SCC update for all ranks.
375 */
376static void scc_mgr_set_all_ranks(const u32 off, const u32 grp, const u32 val,
377 const int update)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500378{
Marek Vasut0b69b802015-07-12 23:25:21 +0200379 u32 r;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500380
381 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
382 r += NUM_RANKS_PER_SHADOW_REG) {
Marek Vasut0b69b802015-07-12 23:25:21 +0200383 scc_mgr_set(off, grp, val);
Marek Vasut162d60e2015-07-12 23:14:33 +0200384
Marek Vasut0b69b802015-07-12 23:25:21 +0200385 if (update || (r == 0)) {
386 writel(grp, &sdr_scc_mgr->dqs_ena);
Marek Vasut1273dd92015-07-12 21:05:08 +0200387 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500388 }
389 }
390}
391
Marek Vasut0b69b802015-07-12 23:25:21 +0200392static void scc_mgr_set_dqs_en_phase_all_ranks(u32 read_group, u32 phase)
393{
394 /*
395 * USER although the h/w doesn't support different phases per
396 * shadow register, for simplicity our scc manager modeling
397 * keeps different phase settings per shadow reg, and it's
398 * important for us to keep them in sync to match h/w.
399 * for efficiency, the scan chain update should occur only
400 * once to sr0.
401 */
402 scc_mgr_set_all_ranks(SCC_MGR_DQS_EN_PHASE_OFFSET,
403 read_group, phase, 0);
404}
405
Dinh Nguyen3da42852015-06-02 22:52:49 -0500406static void scc_mgr_set_dqdqs_output_phase_all_ranks(uint32_t write_group,
407 uint32_t phase)
408{
Marek Vasut0b69b802015-07-12 23:25:21 +0200409 /*
410 * USER although the h/w doesn't support different phases per
411 * shadow register, for simplicity our scc manager modeling
412 * keeps different phase settings per shadow reg, and it's
413 * important for us to keep them in sync to match h/w.
414 * for efficiency, the scan chain update should occur only
415 * once to sr0.
416 */
417 scc_mgr_set_all_ranks(SCC_MGR_DQDQS_OUT_PHASE_OFFSET,
418 write_group, phase, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500419}
420
Dinh Nguyen3da42852015-06-02 22:52:49 -0500421static void scc_mgr_set_dqs_en_delay_all_ranks(uint32_t read_group,
422 uint32_t delay)
423{
Dinh Nguyen3da42852015-06-02 22:52:49 -0500424 /*
425 * In shadow register mode, the T11 settings are stored in
426 * registers in the core, which are updated by the DQS_ENA
427 * signals. Not issuing the SCC_MGR_UPD command allows us to
428 * save lots of rank switching overhead, by calling
429 * select_shadow_regs_for_update with update_scan_chains
430 * set to 0.
431 */
Marek Vasut0b69b802015-07-12 23:25:21 +0200432 scc_mgr_set_all_ranks(SCC_MGR_DQS_EN_DELAY_OFFSET,
433 read_group, delay, 1);
Marek Vasut1273dd92015-07-12 21:05:08 +0200434 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500435}
436
Marek Vasut5be355c2015-07-12 23:39:06 +0200437/**
438 * scc_mgr_set_oct_out1_delay() - Set OCT output delay
439 * @write_group: Write group
440 * @delay: Delay value
441 *
442 * This function sets the OCT output delay in SCC manager.
443 */
444static void scc_mgr_set_oct_out1_delay(const u32 write_group, const u32 delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500445{
Marek Vasut5be355c2015-07-12 23:39:06 +0200446 const int ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
447 RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
448 const int base = write_group * ratio;
449 int i;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500450 /*
451 * Load the setting in the SCC manager
452 * Although OCT affects only write data, the OCT delay is controlled
453 * by the DQS logic block which is instantiated once per read group.
454 * For protocols where a write group consists of multiple read groups,
455 * the setting must be set multiple times.
456 */
Marek Vasut5be355c2015-07-12 23:39:06 +0200457 for (i = 0; i < ratio; i++)
458 scc_mgr_set(SCC_MGR_OCT_OUT1_DELAY_OFFSET, base + i, delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500459}
460
Marek Vasut37a37ca2015-07-19 01:32:55 +0200461/**
462 * scc_mgr_set_hhp_extras() - Set HHP extras.
463 *
464 * Load the fixed setting in the SCC manager HHP extras.
465 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500466static void scc_mgr_set_hhp_extras(void)
467{
468 /*
469 * Load the fixed setting in the SCC manager
Marek Vasut37a37ca2015-07-19 01:32:55 +0200470 * bits: 0:0 = 1'b1 - DQS bypass
471 * bits: 1:1 = 1'b1 - DQ bypass
472 * bits: 4:2 = 3'b001 - rfifo_mode
473 * bits: 6:5 = 2'b01 - rfifo clock_select
474 * bits: 7:7 = 1'b0 - separate gating from ungating setting
475 * bits: 8:8 = 1'b0 - separate OE from Output delay setting
Dinh Nguyen3da42852015-06-02 22:52:49 -0500476 */
Marek Vasut37a37ca2015-07-19 01:32:55 +0200477 const u32 value = (0 << 8) | (0 << 7) | (1 << 5) |
478 (1 << 2) | (1 << 1) | (1 << 0);
479 const u32 addr = SDR_PHYGRP_SCCGRP_ADDRESS |
480 SCC_MGR_HHP_GLOBALS_OFFSET |
481 SCC_MGR_HHP_EXTRAS_OFFSET;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500482
Marek Vasut37a37ca2015-07-19 01:32:55 +0200483 debug_cond(DLEVEL == 1, "%s:%d Setting HHP Extras\n",
484 __func__, __LINE__);
485 writel(value, addr);
486 debug_cond(DLEVEL == 1, "%s:%d Done Setting HHP Extras\n",
487 __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500488}
489
Marek Vasutf42af352015-07-20 04:41:53 +0200490/**
491 * scc_mgr_zero_all() - Zero all DQS config
492 *
493 * Zero all DQS config.
Dinh Nguyen3da42852015-06-02 22:52:49 -0500494 */
495static void scc_mgr_zero_all(void)
496{
Marek Vasutf42af352015-07-20 04:41:53 +0200497 int i, r;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500498
499 /*
500 * USER Zero all DQS config settings, across all groups and all
501 * shadow registers
502 */
Marek Vasutf42af352015-07-20 04:41:53 +0200503 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
504 r += NUM_RANKS_PER_SHADOW_REG) {
Dinh Nguyen3da42852015-06-02 22:52:49 -0500505 for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
506 /*
507 * The phases actually don't exist on a per-rank basis,
508 * but there's no harm updating them several times, so
509 * let's keep the code simple.
510 */
511 scc_mgr_set_dqs_bus_in_delay(i, IO_DQS_IN_RESERVE);
512 scc_mgr_set_dqs_en_phase(i, 0);
513 scc_mgr_set_dqs_en_delay(i, 0);
514 }
515
516 for (i = 0; i < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; i++) {
517 scc_mgr_set_dqdqs_output_phase(i, 0);
Marek Vasutf42af352015-07-20 04:41:53 +0200518 /* Arria V/Cyclone V don't have out2. */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500519 scc_mgr_set_oct_out1_delay(i, IO_DQS_OUT_RESERVE);
520 }
521 }
522
Marek Vasutf42af352015-07-20 04:41:53 +0200523 /* Multicast to all DQS group enables. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200524 writel(0xff, &sdr_scc_mgr->dqs_ena);
525 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500526}
527
Marek Vasutc5c5f532015-07-17 02:06:20 +0200528/**
529 * scc_set_bypass_mode() - Set bypass mode and trigger SCC update
530 * @write_group: Write group
531 *
532 * Set bypass mode and trigger SCC update.
533 */
534static void scc_set_bypass_mode(const u32 write_group)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500535{
Marek Vasutc5c5f532015-07-17 02:06:20 +0200536 /* Multicast to all DQ enables. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200537 writel(0xff, &sdr_scc_mgr->dq_ena);
538 writel(0xff, &sdr_scc_mgr->dm_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500539
Marek Vasutc5c5f532015-07-17 02:06:20 +0200540 /* Update current DQS IO enable. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200541 writel(0, &sdr_scc_mgr->dqs_io_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500542
Marek Vasutc5c5f532015-07-17 02:06:20 +0200543 /* Update the DQS logic. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200544 writel(write_group, &sdr_scc_mgr->dqs_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500545
Marek Vasutc5c5f532015-07-17 02:06:20 +0200546 /* Hit update. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200547 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500548}
549
Marek Vasut5e837892015-07-13 00:30:09 +0200550/**
551 * scc_mgr_load_dqs_for_write_group() - Load DQS settings for Write Group
552 * @write_group: Write group
553 *
554 * Load DQS settings for Write Group, do not trigger SCC update.
555 */
556static void scc_mgr_load_dqs_for_write_group(const u32 write_group)
Marek Vasut5ff825b2015-07-12 22:11:55 +0200557{
Marek Vasut5e837892015-07-13 00:30:09 +0200558 const int ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
559 RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
560 const int base = write_group * ratio;
561 int i;
Marek Vasut5ff825b2015-07-12 22:11:55 +0200562 /*
Marek Vasut5e837892015-07-13 00:30:09 +0200563 * Load the setting in the SCC manager
Marek Vasut5ff825b2015-07-12 22:11:55 +0200564 * Although OCT affects only write data, the OCT delay is controlled
565 * by the DQS logic block which is instantiated once per read group.
566 * For protocols where a write group consists of multiple read groups,
Marek Vasut5e837892015-07-13 00:30:09 +0200567 * the setting must be set multiple times.
Marek Vasut5ff825b2015-07-12 22:11:55 +0200568 */
Marek Vasut5e837892015-07-13 00:30:09 +0200569 for (i = 0; i < ratio; i++)
570 writel(base + i, &sdr_scc_mgr->dqs_ena);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200571}
572
Marek Vasutd41ea932015-07-20 08:41:04 +0200573/**
574 * scc_mgr_zero_group() - Zero all configs for a group
575 *
576 * Zero DQ, DM, DQS and OCT configs for a group.
577 */
578static void scc_mgr_zero_group(const u32 write_group, const int out_only)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500579{
Marek Vasutd41ea932015-07-20 08:41:04 +0200580 int i, r;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500581
Marek Vasutd41ea932015-07-20 08:41:04 +0200582 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
583 r += NUM_RANKS_PER_SHADOW_REG) {
584 /* Zero all DQ config settings. */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500585 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
Marek Vasut07aee5b2015-07-12 22:07:33 +0200586 scc_mgr_set_dq_out1_delay(i, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500587 if (!out_only)
Marek Vasut07aee5b2015-07-12 22:07:33 +0200588 scc_mgr_set_dq_in_delay(i, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500589 }
590
Marek Vasutd41ea932015-07-20 08:41:04 +0200591 /* Multicast to all DQ enables. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200592 writel(0xff, &sdr_scc_mgr->dq_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500593
Marek Vasutd41ea932015-07-20 08:41:04 +0200594 /* Zero all DM config settings. */
595 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++)
Marek Vasut07aee5b2015-07-12 22:07:33 +0200596 scc_mgr_set_dm_out1_delay(i, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500597
Marek Vasutd41ea932015-07-20 08:41:04 +0200598 /* Multicast to all DM enables. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200599 writel(0xff, &sdr_scc_mgr->dm_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500600
Marek Vasutd41ea932015-07-20 08:41:04 +0200601 /* Zero all DQS IO settings. */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500602 if (!out_only)
Marek Vasut32675242015-07-17 06:07:13 +0200603 scc_mgr_set_dqs_io_in_delay(0);
Marek Vasutd41ea932015-07-20 08:41:04 +0200604
605 /* Arria V/Cyclone V don't have out2. */
Marek Vasut32675242015-07-17 06:07:13 +0200606 scc_mgr_set_dqs_out1_delay(IO_DQS_OUT_RESERVE);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500607 scc_mgr_set_oct_out1_delay(write_group, IO_DQS_OUT_RESERVE);
608 scc_mgr_load_dqs_for_write_group(write_group);
609
Marek Vasutd41ea932015-07-20 08:41:04 +0200610 /* Multicast to all DQS IO enables (only 1 in total). */
Marek Vasut1273dd92015-07-12 21:05:08 +0200611 writel(0, &sdr_scc_mgr->dqs_io_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500612
Marek Vasutd41ea932015-07-20 08:41:04 +0200613 /* Hit update to zero everything. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200614 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500615 }
616}
617
Dinh Nguyen3da42852015-06-02 22:52:49 -0500618/*
619 * apply and load a particular input delay for the DQ pins in a group
620 * group_bgn is the index of the first dq pin (in the write group)
621 */
Marek Vasut32675242015-07-17 06:07:13 +0200622static void scc_mgr_apply_group_dq_in_delay(uint32_t group_bgn, uint32_t delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500623{
624 uint32_t i, p;
625
626 for (i = 0, p = group_bgn; i < RW_MGR_MEM_DQ_PER_READ_DQS; i++, p++) {
Marek Vasut07aee5b2015-07-12 22:07:33 +0200627 scc_mgr_set_dq_in_delay(p, delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500628 scc_mgr_load_dq(p);
629 }
630}
631
Marek Vasut300c2e62015-07-17 05:42:49 +0200632/**
633 * scc_mgr_apply_group_dq_out1_delay() - Apply and load an output delay for the DQ pins in a group
634 * @delay: Delay value
635 *
636 * Apply and load a particular output delay for the DQ pins in a group.
637 */
638static void scc_mgr_apply_group_dq_out1_delay(const u32 delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500639{
Marek Vasut300c2e62015-07-17 05:42:49 +0200640 int i;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500641
Marek Vasut300c2e62015-07-17 05:42:49 +0200642 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
643 scc_mgr_set_dq_out1_delay(i, delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500644 scc_mgr_load_dq(i);
645 }
646}
647
648/* apply and load a particular output delay for the DM pins in a group */
Marek Vasut32675242015-07-17 06:07:13 +0200649static void scc_mgr_apply_group_dm_out1_delay(uint32_t delay1)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500650{
651 uint32_t i;
652
653 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++) {
Marek Vasut07aee5b2015-07-12 22:07:33 +0200654 scc_mgr_set_dm_out1_delay(i, delay1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500655 scc_mgr_load_dm(i);
656 }
657}
658
659
660/* apply and load delay on both DQS and OCT out1 */
661static void scc_mgr_apply_group_dqs_io_and_oct_out1(uint32_t write_group,
662 uint32_t delay)
663{
Marek Vasut32675242015-07-17 06:07:13 +0200664 scc_mgr_set_dqs_out1_delay(delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500665 scc_mgr_load_dqs_io();
666
667 scc_mgr_set_oct_out1_delay(write_group, delay);
668 scc_mgr_load_dqs_for_write_group(write_group);
669}
670
Marek Vasut5cb1b502015-07-17 05:33:28 +0200671/**
672 * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output side: DQ, DM, DQS, OCT
673 * @write_group: Write group
674 * @delay: Delay value
675 *
676 * Apply a delay to the entire output side: DQ, DM, DQS, OCT.
677 */
Marek Vasut8eccde32015-07-17 05:30:14 +0200678static void scc_mgr_apply_group_all_out_delay_add(const u32 write_group,
Marek Vasut8eccde32015-07-17 05:30:14 +0200679 const u32 delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500680{
Marek Vasut8eccde32015-07-17 05:30:14 +0200681 u32 i, new_delay;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500682
Marek Vasut8eccde32015-07-17 05:30:14 +0200683 /* DQ shift */
684 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500685 scc_mgr_load_dq(i);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500686
Marek Vasut8eccde32015-07-17 05:30:14 +0200687 /* DM shift */
688 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500689 scc_mgr_load_dm(i);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500690
Marek Vasut5cb1b502015-07-17 05:33:28 +0200691 /* DQS shift */
692 new_delay = READ_SCC_DQS_IO_OUT2_DELAY + delay;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500693 if (new_delay > IO_IO_OUT2_DELAY_MAX) {
Marek Vasut5cb1b502015-07-17 05:33:28 +0200694 debug_cond(DLEVEL == 1,
695 "%s:%d (%u, %u) DQS: %u > %d; adding %u to OUT1\n",
696 __func__, __LINE__, write_group, delay, new_delay,
697 IO_IO_OUT2_DELAY_MAX,
Dinh Nguyen3da42852015-06-02 22:52:49 -0500698 new_delay - IO_IO_OUT2_DELAY_MAX);
Marek Vasut5cb1b502015-07-17 05:33:28 +0200699 new_delay -= IO_IO_OUT2_DELAY_MAX;
700 scc_mgr_set_dqs_out1_delay(new_delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500701 }
702
703 scc_mgr_load_dqs_io();
704
Marek Vasut5cb1b502015-07-17 05:33:28 +0200705 /* OCT shift */
706 new_delay = READ_SCC_OCT_OUT2_DELAY + delay;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500707 if (new_delay > IO_IO_OUT2_DELAY_MAX) {
Marek Vasut5cb1b502015-07-17 05:33:28 +0200708 debug_cond(DLEVEL == 1,
709 "%s:%d (%u, %u) DQS: %u > %d; adding %u to OUT1\n",
710 __func__, __LINE__, write_group, delay,
711 new_delay, IO_IO_OUT2_DELAY_MAX,
Dinh Nguyen3da42852015-06-02 22:52:49 -0500712 new_delay - IO_IO_OUT2_DELAY_MAX);
Marek Vasut5cb1b502015-07-17 05:33:28 +0200713 new_delay -= IO_IO_OUT2_DELAY_MAX;
714 scc_mgr_set_oct_out1_delay(write_group, new_delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500715 }
716
717 scc_mgr_load_dqs_for_write_group(write_group);
718}
719
Marek Vasutf51a7d32015-07-19 02:18:21 +0200720/**
721 * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output side to all ranks
722 * @write_group: Write group
723 * @delay: Delay value
724 *
725 * Apply a delay to the entire output side (DQ, DM, DQS, OCT) to all ranks.
Dinh Nguyen3da42852015-06-02 22:52:49 -0500726 */
Marek Vasutf51a7d32015-07-19 02:18:21 +0200727static void
728scc_mgr_apply_group_all_out_delay_add_all_ranks(const u32 write_group,
729 const u32 delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500730{
Marek Vasutf51a7d32015-07-19 02:18:21 +0200731 int r;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500732
733 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
Marek Vasutf51a7d32015-07-19 02:18:21 +0200734 r += NUM_RANKS_PER_SHADOW_REG) {
Marek Vasut5cb1b502015-07-17 05:33:28 +0200735 scc_mgr_apply_group_all_out_delay_add(write_group, delay);
Marek Vasut1273dd92015-07-12 21:05:08 +0200736 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500737 }
738}
739
Marek Vasutf936f942015-07-26 11:07:19 +0200740/**
741 * set_jump_as_return() - Return instruction optimization
742 *
743 * Optimization used to recover some slots in ddr3 inst_rom could be
744 * applied to other protocols if we wanted to
745 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500746static void set_jump_as_return(void)
747{
Dinh Nguyen3da42852015-06-02 22:52:49 -0500748 /*
Marek Vasutf936f942015-07-26 11:07:19 +0200749 * To save space, we replace return with jump to special shared
Dinh Nguyen3da42852015-06-02 22:52:49 -0500750 * RETURN instruction so we set the counter to large value so that
Marek Vasutf936f942015-07-26 11:07:19 +0200751 * we always jump.
Dinh Nguyen3da42852015-06-02 22:52:49 -0500752 */
Marek Vasut1273dd92015-07-12 21:05:08 +0200753 writel(0xff, &sdr_rw_load_mgr_regs->load_cntr0);
754 writel(RW_MGR_RETURN, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500755}
756
757/*
758 * should always use constants as argument to ensure all computations are
759 * performed at compile time
760 */
761static void delay_for_n_mem_clocks(const uint32_t clocks)
762{
763 uint32_t afi_clocks;
764 uint8_t inner = 0;
765 uint8_t outer = 0;
766 uint16_t c_loop = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500767
768 debug("%s:%d: clocks=%u ... start\n", __func__, __LINE__, clocks);
769
770
771 afi_clocks = (clocks + AFI_RATE_RATIO-1) / AFI_RATE_RATIO;
772 /* scale (rounding up) to get afi clocks */
773
774 /*
775 * Note, we don't bother accounting for being off a little bit
776 * because of a few extra instructions in outer loops
777 * Note, the loops have a test at the end, and do the test before
778 * the decrement, and so always perform the loop
779 * 1 time more than the counter value
780 */
781 if (afi_clocks == 0) {
782 ;
783 } else if (afi_clocks <= 0x100) {
784 inner = afi_clocks-1;
785 outer = 0;
786 c_loop = 0;
787 } else if (afi_clocks <= 0x10000) {
788 inner = 0xff;
789 outer = (afi_clocks-1) >> 8;
790 c_loop = 0;
791 } else {
792 inner = 0xff;
793 outer = 0xff;
794 c_loop = (afi_clocks-1) >> 16;
795 }
796
797 /*
798 * rom instructions are structured as follows:
799 *
800 * IDLE_LOOP2: jnz cntr0, TARGET_A
801 * IDLE_LOOP1: jnz cntr1, TARGET_B
802 * return
803 *
804 * so, when doing nested loops, TARGET_A is set to IDLE_LOOP2, and
805 * TARGET_B is set to IDLE_LOOP2 as well
806 *
807 * if we have no outer loop, though, then we can use IDLE_LOOP1 only,
808 * and set TARGET_B to IDLE_LOOP1 and we skip IDLE_LOOP2 entirely
809 *
810 * a little confusing, but it helps save precious space in the inst_rom
811 * and sequencer rom and keeps the delays more accurate and reduces
812 * overhead
813 */
814 if (afi_clocks <= 0x100) {
Marek Vasut1273dd92015-07-12 21:05:08 +0200815 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(inner),
816 &sdr_rw_load_mgr_regs->load_cntr1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500817
Marek Vasut1273dd92015-07-12 21:05:08 +0200818 writel(RW_MGR_IDLE_LOOP1,
819 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500820
Marek Vasut1273dd92015-07-12 21:05:08 +0200821 writel(RW_MGR_IDLE_LOOP1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
822 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500823 } else {
Marek Vasut1273dd92015-07-12 21:05:08 +0200824 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(inner),
825 &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500826
Marek Vasut1273dd92015-07-12 21:05:08 +0200827 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(outer),
828 &sdr_rw_load_mgr_regs->load_cntr1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500829
Marek Vasut1273dd92015-07-12 21:05:08 +0200830 writel(RW_MGR_IDLE_LOOP2,
831 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500832
Marek Vasut1273dd92015-07-12 21:05:08 +0200833 writel(RW_MGR_IDLE_LOOP2,
834 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500835
836 /* hack to get around compiler not being smart enough */
837 if (afi_clocks <= 0x10000) {
838 /* only need to run once */
Marek Vasut1273dd92015-07-12 21:05:08 +0200839 writel(RW_MGR_IDLE_LOOP2, SDR_PHYGRP_RWMGRGRP_ADDRESS |
840 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500841 } else {
842 do {
Marek Vasut1273dd92015-07-12 21:05:08 +0200843 writel(RW_MGR_IDLE_LOOP2,
844 SDR_PHYGRP_RWMGRGRP_ADDRESS |
845 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500846 } while (c_loop-- != 0);
847 }
848 }
849 debug("%s:%d clocks=%u ... end\n", __func__, __LINE__, clocks);
850}
851
Marek Vasut944fe712015-07-13 00:44:30 +0200852/**
853 * rw_mgr_mem_init_load_regs() - Load instruction registers
854 * @cntr0: Counter 0 value
855 * @cntr1: Counter 1 value
856 * @cntr2: Counter 2 value
857 * @jump: Jump instruction value
858 *
859 * Load instruction registers.
860 */
861static void rw_mgr_mem_init_load_regs(u32 cntr0, u32 cntr1, u32 cntr2, u32 jump)
862{
863 uint32_t grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
864 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
865
866 /* Load counters */
867 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr0),
868 &sdr_rw_load_mgr_regs->load_cntr0);
869 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr1),
870 &sdr_rw_load_mgr_regs->load_cntr1);
871 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr2),
872 &sdr_rw_load_mgr_regs->load_cntr2);
873
874 /* Load jump address */
875 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
876 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add1);
877 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add2);
878
879 /* Execute count instruction */
880 writel(jump, grpaddr);
881}
882
Marek Vasutecd23342015-07-13 00:51:05 +0200883/**
884 * rw_mgr_mem_load_user() - Load user calibration values
885 * @fin1: Final instruction 1
886 * @fin2: Final instruction 2
887 * @precharge: If 1, precharge the banks at the end
888 *
889 * Load user calibration values and optionally precharge the banks.
890 */
891static void rw_mgr_mem_load_user(const u32 fin1, const u32 fin2,
892 const int precharge)
893{
894 u32 grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
895 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
896 u32 r;
897
898 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS; r++) {
899 if (param->skip_ranks[r]) {
900 /* request to skip the rank */
901 continue;
902 }
903
904 /* set rank */
905 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_OFF);
906
907 /* precharge all banks ... */
908 if (precharge)
909 writel(RW_MGR_PRECHARGE_ALL, grpaddr);
910
911 /*
912 * USER Use Mirror-ed commands for odd ranks if address
913 * mirrorring is on
914 */
915 if ((RW_MGR_MEM_ADDRESS_MIRRORING >> r) & 0x1) {
916 set_jump_as_return();
917 writel(RW_MGR_MRS2_MIRR, grpaddr);
918 delay_for_n_mem_clocks(4);
919 set_jump_as_return();
920 writel(RW_MGR_MRS3_MIRR, grpaddr);
921 delay_for_n_mem_clocks(4);
922 set_jump_as_return();
923 writel(RW_MGR_MRS1_MIRR, grpaddr);
924 delay_for_n_mem_clocks(4);
925 set_jump_as_return();
926 writel(fin1, grpaddr);
927 } else {
928 set_jump_as_return();
929 writel(RW_MGR_MRS2, grpaddr);
930 delay_for_n_mem_clocks(4);
931 set_jump_as_return();
932 writel(RW_MGR_MRS3, grpaddr);
933 delay_for_n_mem_clocks(4);
934 set_jump_as_return();
935 writel(RW_MGR_MRS1, grpaddr);
936 set_jump_as_return();
937 writel(fin2, grpaddr);
938 }
939
940 if (precharge)
941 continue;
942
943 set_jump_as_return();
944 writel(RW_MGR_ZQCL, grpaddr);
945
946 /* tZQinit = tDLLK = 512 ck cycles */
947 delay_for_n_mem_clocks(512);
948 }
949}
950
Marek Vasut8e9d7d02015-07-26 10:57:06 +0200951/**
952 * rw_mgr_mem_initialize() - Initialize RW Manager
953 *
954 * Initialize RW Manager.
955 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500956static void rw_mgr_mem_initialize(void)
957{
Dinh Nguyen3da42852015-06-02 22:52:49 -0500958 debug("%s:%d\n", __func__, __LINE__);
959
960 /* The reset / cke part of initialization is broadcasted to all ranks */
Marek Vasut1273dd92015-07-12 21:05:08 +0200961 writel(RW_MGR_RANK_ALL, SDR_PHYGRP_RWMGRGRP_ADDRESS |
962 RW_MGR_SET_CS_AND_ODT_MASK_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500963
964 /*
965 * Here's how you load register for a loop
966 * Counters are located @ 0x800
967 * Jump address are located @ 0xC00
968 * For both, registers 0 to 3 are selected using bits 3 and 2, like
969 * in 0x800, 0x804, 0x808, 0x80C and 0xC00, 0xC04, 0xC08, 0xC0C
970 * I know this ain't pretty, but Avalon bus throws away the 2 least
971 * significant bits
972 */
973
Marek Vasut8e9d7d02015-07-26 10:57:06 +0200974 /* Start with memory RESET activated */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500975
976 /* tINIT = 200us */
977
978 /*
979 * 200us @ 266MHz (3.75 ns) ~ 54000 clock cycles
980 * If a and b are the number of iteration in 2 nested loops
981 * it takes the following number of cycles to complete the operation:
982 * number_of_cycles = ((2 + n) * a + 2) * b
983 * where n is the number of instruction in the inner loop
984 * One possible solution is n = 0 , a = 256 , b = 106 => a = FF,
985 * b = 6A
986 */
Marek Vasut944fe712015-07-13 00:44:30 +0200987 rw_mgr_mem_init_load_regs(SEQ_TINIT_CNTR0_VAL, SEQ_TINIT_CNTR1_VAL,
988 SEQ_TINIT_CNTR2_VAL,
989 RW_MGR_INIT_RESET_0_CKE_0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500990
Marek Vasut8e9d7d02015-07-26 10:57:06 +0200991 /* Indicate that memory is stable. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200992 writel(1, &phy_mgr_cfg->reset_mem_stbl);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500993
994 /*
995 * transition the RESET to high
996 * Wait for 500us
997 */
998
999 /*
1000 * 500us @ 266MHz (3.75 ns) ~ 134000 clock cycles
1001 * If a and b are the number of iteration in 2 nested loops
1002 * it takes the following number of cycles to complete the operation
1003 * number_of_cycles = ((2 + n) * a + 2) * b
1004 * where n is the number of instruction in the inner loop
1005 * One possible solution is n = 2 , a = 131 , b = 256 => a = 83,
1006 * b = FF
1007 */
Marek Vasut944fe712015-07-13 00:44:30 +02001008 rw_mgr_mem_init_load_regs(SEQ_TRESET_CNTR0_VAL, SEQ_TRESET_CNTR1_VAL,
1009 SEQ_TRESET_CNTR2_VAL,
1010 RW_MGR_INIT_RESET_1_CKE_0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001011
Marek Vasut8e9d7d02015-07-26 10:57:06 +02001012 /* Bring up clock enable. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001013
1014 /* tXRP < 250 ck cycles */
1015 delay_for_n_mem_clocks(250);
1016
Marek Vasutecd23342015-07-13 00:51:05 +02001017 rw_mgr_mem_load_user(RW_MGR_MRS0_DLL_RESET_MIRR, RW_MGR_MRS0_DLL_RESET,
1018 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001019}
1020
1021/*
1022 * At the end of calibration we have to program the user settings in, and
1023 * USER hand off the memory to the user.
1024 */
1025static void rw_mgr_mem_handoff(void)
1026{
Marek Vasutecd23342015-07-13 00:51:05 +02001027 rw_mgr_mem_load_user(RW_MGR_MRS0_USER_MIRR, RW_MGR_MRS0_USER, 1);
1028 /*
1029 * USER need to wait tMOD (12CK or 15ns) time before issuing
1030 * other commands, but we will have plenty of NIOS cycles before
1031 * actual handoff so its okay.
1032 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001033}
1034
Marek Vasutad64769c2015-07-21 05:43:37 +02001035/*
1036 * issue write test command.
1037 * two variants are provided. one that just tests a write pattern and
1038 * another that tests datamask functionality.
1039 */
1040static void rw_mgr_mem_calibrate_write_test_issue(uint32_t group,
1041 uint32_t test_dm)
1042{
1043 uint32_t mcc_instruction;
1044 uint32_t quick_write_mode = (((STATIC_CALIB_STEPS) & CALIB_SKIP_WRITES) &&
1045 ENABLE_SUPER_QUICK_CALIBRATION);
1046 uint32_t rw_wl_nop_cycles;
1047 uint32_t addr;
1048
1049 /*
1050 * Set counter and jump addresses for the right
1051 * number of NOP cycles.
1052 * The number of supported NOP cycles can range from -1 to infinity
1053 * Three different cases are handled:
1054 *
1055 * 1. For a number of NOP cycles greater than 0, the RW Mgr looping
1056 * mechanism will be used to insert the right number of NOPs
1057 *
1058 * 2. For a number of NOP cycles equals to 0, the micro-instruction
1059 * issuing the write command will jump straight to the
1060 * micro-instruction that turns on DQS (for DDRx), or outputs write
1061 * data (for RLD), skipping
1062 * the NOP micro-instruction all together
1063 *
1064 * 3. A number of NOP cycles equal to -1 indicates that DQS must be
1065 * turned on in the same micro-instruction that issues the write
1066 * command. Then we need
1067 * to directly jump to the micro-instruction that sends out the data
1068 *
1069 * NOTE: Implementing this mechanism uses 2 RW Mgr jump-counters
1070 * (2 and 3). One jump-counter (0) is used to perform multiple
1071 * write-read operations.
1072 * one counter left to issue this command in "multiple-group" mode
1073 */
1074
1075 rw_wl_nop_cycles = gbl->rw_wl_nop_cycles;
1076
1077 if (rw_wl_nop_cycles == -1) {
1078 /*
1079 * CNTR 2 - We want to execute the special write operation that
1080 * turns on DQS right away and then skip directly to the
1081 * instruction that sends out the data. We set the counter to a
1082 * large number so that the jump is always taken.
1083 */
1084 writel(0xFF, &sdr_rw_load_mgr_regs->load_cntr2);
1085
1086 /* CNTR 3 - Not used */
1087 if (test_dm) {
1088 mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0_WL_1;
1089 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_DATA,
1090 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1091 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_NOP,
1092 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1093 } else {
1094 mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0_WL_1;
1095 writel(RW_MGR_LFSR_WR_RD_BANK_0_DATA,
1096 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1097 writel(RW_MGR_LFSR_WR_RD_BANK_0_NOP,
1098 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1099 }
1100 } else if (rw_wl_nop_cycles == 0) {
1101 /*
1102 * CNTR 2 - We want to skip the NOP operation and go straight
1103 * to the DQS enable instruction. We set the counter to a large
1104 * number so that the jump is always taken.
1105 */
1106 writel(0xFF, &sdr_rw_load_mgr_regs->load_cntr2);
1107
1108 /* CNTR 3 - Not used */
1109 if (test_dm) {
1110 mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0;
1111 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_DQS,
1112 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1113 } else {
1114 mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0;
1115 writel(RW_MGR_LFSR_WR_RD_BANK_0_DQS,
1116 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1117 }
1118 } else {
1119 /*
1120 * CNTR 2 - In this case we want to execute the next instruction
1121 * and NOT take the jump. So we set the counter to 0. The jump
1122 * address doesn't count.
1123 */
1124 writel(0x0, &sdr_rw_load_mgr_regs->load_cntr2);
1125 writel(0x0, &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1126
1127 /*
1128 * CNTR 3 - Set the nop counter to the number of cycles we
1129 * need to loop for, minus 1.
1130 */
1131 writel(rw_wl_nop_cycles - 1, &sdr_rw_load_mgr_regs->load_cntr3);
1132 if (test_dm) {
1133 mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0;
1134 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_NOP,
1135 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1136 } else {
1137 mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0;
1138 writel(RW_MGR_LFSR_WR_RD_BANK_0_NOP,
1139 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1140 }
1141 }
1142
1143 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1144 RW_MGR_RESET_READ_DATAPATH_OFFSET);
1145
1146 if (quick_write_mode)
1147 writel(0x08, &sdr_rw_load_mgr_regs->load_cntr0);
1148 else
1149 writel(0x40, &sdr_rw_load_mgr_regs->load_cntr0);
1150
1151 writel(mcc_instruction, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
1152
1153 /*
1154 * CNTR 1 - This is used to ensure enough time elapses
1155 * for read data to come back.
1156 */
1157 writel(0x30, &sdr_rw_load_mgr_regs->load_cntr1);
1158
1159 if (test_dm) {
1160 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_WAIT,
1161 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
1162 } else {
1163 writel(RW_MGR_LFSR_WR_RD_BANK_0_WAIT,
1164 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
1165 }
1166
1167 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_RUN_SINGLE_GROUP_OFFSET;
1168 writel(mcc_instruction, addr + (group << 2));
1169}
1170
1171/* Test writes, can check for a single bit pass or multiple bit pass */
1172static uint32_t rw_mgr_mem_calibrate_write_test(uint32_t rank_bgn,
1173 uint32_t write_group, uint32_t use_dm, uint32_t all_correct,
1174 uint32_t *bit_chk, uint32_t all_ranks)
1175{
1176 uint32_t r;
1177 uint32_t correct_mask_vg;
1178 uint32_t tmp_bit_chk;
1179 uint32_t vg;
1180 uint32_t rank_end = all_ranks ? RW_MGR_MEM_NUMBER_OF_RANKS :
1181 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1182 uint32_t addr_rw_mgr;
1183 uint32_t base_rw_mgr;
1184
1185 *bit_chk = param->write_correct_mask;
1186 correct_mask_vg = param->write_correct_mask_vg;
1187
1188 for (r = rank_bgn; r < rank_end; r++) {
1189 if (param->skip_ranks[r]) {
1190 /* request to skip the rank */
1191 continue;
1192 }
1193
1194 /* set rank */
1195 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1196
1197 tmp_bit_chk = 0;
1198 addr_rw_mgr = SDR_PHYGRP_RWMGRGRP_ADDRESS;
1199 for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS-1; ; vg--) {
1200 /* reset the fifos to get pointers to known state */
1201 writel(0, &phy_mgr_cmd->fifo_reset);
1202
1203 tmp_bit_chk = tmp_bit_chk <<
1204 (RW_MGR_MEM_DQ_PER_WRITE_DQS /
1205 RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS);
1206 rw_mgr_mem_calibrate_write_test_issue(write_group *
1207 RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS+vg,
1208 use_dm);
1209
1210 base_rw_mgr = readl(addr_rw_mgr);
1211 tmp_bit_chk = tmp_bit_chk | (correct_mask_vg & ~(base_rw_mgr));
1212 if (vg == 0)
1213 break;
1214 }
1215 *bit_chk &= tmp_bit_chk;
1216 }
1217
1218 if (all_correct) {
1219 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
1220 debug_cond(DLEVEL == 2, "write_test(%u,%u,ALL) : %u == \
1221 %u => %lu", write_group, use_dm,
1222 *bit_chk, param->write_correct_mask,
1223 (long unsigned int)(*bit_chk ==
1224 param->write_correct_mask));
1225 return *bit_chk == param->write_correct_mask;
1226 } else {
1227 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
1228 debug_cond(DLEVEL == 2, "write_test(%u,%u,ONE) : %u != ",
1229 write_group, use_dm, *bit_chk);
1230 debug_cond(DLEVEL == 2, "%lu" " => %lu", (long unsigned int)0,
1231 (long unsigned int)(*bit_chk != 0));
1232 return *bit_chk != 0x00;
1233 }
1234}
1235
Marek Vasutd844c7d2015-07-18 03:55:07 +02001236/**
1237 * rw_mgr_mem_calibrate_read_test_patterns() - Read back test patterns
1238 * @rank_bgn: Rank number
1239 * @group: Read/Write Group
1240 * @all_ranks: Test all ranks
1241 *
1242 * Performs a guaranteed read on the patterns we are going to use during a
1243 * read test to ensure memory works.
Dinh Nguyen3da42852015-06-02 22:52:49 -05001244 */
Marek Vasutd844c7d2015-07-18 03:55:07 +02001245static int
1246rw_mgr_mem_calibrate_read_test_patterns(const u32 rank_bgn, const u32 group,
1247 const u32 all_ranks)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001248{
Marek Vasutd844c7d2015-07-18 03:55:07 +02001249 const u32 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1250 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
1251 const u32 addr_offset =
1252 (group * RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS) << 2;
1253 const u32 rank_end = all_ranks ?
1254 RW_MGR_MEM_NUMBER_OF_RANKS :
1255 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1256 const u32 shift_ratio = RW_MGR_MEM_DQ_PER_READ_DQS /
1257 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
1258 const u32 correct_mask_vg = param->read_correct_mask_vg;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001259
Marek Vasutd844c7d2015-07-18 03:55:07 +02001260 u32 tmp_bit_chk, base_rw_mgr, bit_chk;
1261 int vg, r;
1262 int ret = 0;
1263
1264 bit_chk = param->read_correct_mask;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001265
1266 for (r = rank_bgn; r < rank_end; r++) {
Marek Vasutd844c7d2015-07-18 03:55:07 +02001267 /* Request to skip the rank */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001268 if (param->skip_ranks[r])
Dinh Nguyen3da42852015-06-02 22:52:49 -05001269 continue;
1270
Marek Vasutd844c7d2015-07-18 03:55:07 +02001271 /* Set rank */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001272 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1273
1274 /* Load up a constant bursts of read commands */
Marek Vasut1273dd92015-07-12 21:05:08 +02001275 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr0);
1276 writel(RW_MGR_GUARANTEED_READ,
1277 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001278
Marek Vasut1273dd92015-07-12 21:05:08 +02001279 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr1);
1280 writel(RW_MGR_GUARANTEED_READ_CONT,
1281 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001282
1283 tmp_bit_chk = 0;
Marek Vasutd844c7d2015-07-18 03:55:07 +02001284 for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1;
1285 vg >= 0; vg--) {
1286 /* Reset the FIFOs to get pointers to known state. */
Marek Vasut1273dd92015-07-12 21:05:08 +02001287 writel(0, &phy_mgr_cmd->fifo_reset);
1288 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1289 RW_MGR_RESET_READ_DATAPATH_OFFSET);
Marek Vasutd844c7d2015-07-18 03:55:07 +02001290 writel(RW_MGR_GUARANTEED_READ,
1291 addr + addr_offset + (vg << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05001292
Marek Vasut1273dd92015-07-12 21:05:08 +02001293 base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
Marek Vasutd844c7d2015-07-18 03:55:07 +02001294 tmp_bit_chk <<= shift_ratio;
1295 tmp_bit_chk |= correct_mask_vg & ~base_rw_mgr;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001296 }
Marek Vasutd844c7d2015-07-18 03:55:07 +02001297
1298 bit_chk &= tmp_bit_chk;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001299 }
1300
Marek Vasut17fdc912015-07-12 20:05:54 +02001301 writel(RW_MGR_CLEAR_DQS_ENABLE, addr + (group << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05001302
1303 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
Marek Vasutd844c7d2015-07-18 03:55:07 +02001304
1305 if (bit_chk != param->read_correct_mask)
1306 ret = -EIO;
1307
1308 debug_cond(DLEVEL == 1,
1309 "%s:%d test_load_patterns(%u,ALL) => (%u == %u) => %i\n",
1310 __func__, __LINE__, group, bit_chk,
1311 param->read_correct_mask, ret);
1312
1313 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001314}
1315
Marek Vasutb6cb7f92015-07-18 03:34:22 +02001316/**
1317 * rw_mgr_mem_calibrate_read_load_patterns() - Load up the patterns for read test
1318 * @rank_bgn: Rank number
1319 * @all_ranks: Test all ranks
1320 *
1321 * Load up the patterns we are going to use during a read test.
1322 */
1323static void rw_mgr_mem_calibrate_read_load_patterns(const u32 rank_bgn,
1324 const int all_ranks)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001325{
Marek Vasutb6cb7f92015-07-18 03:34:22 +02001326 const u32 rank_end = all_ranks ?
1327 RW_MGR_MEM_NUMBER_OF_RANKS :
1328 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1329 u32 r;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001330
1331 debug("%s:%d\n", __func__, __LINE__);
Marek Vasutb6cb7f92015-07-18 03:34:22 +02001332
Dinh Nguyen3da42852015-06-02 22:52:49 -05001333 for (r = rank_bgn; r < rank_end; r++) {
1334 if (param->skip_ranks[r])
1335 /* request to skip the rank */
1336 continue;
1337
1338 /* set rank */
1339 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1340
1341 /* Load up a constant bursts */
Marek Vasut1273dd92015-07-12 21:05:08 +02001342 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001343
Marek Vasut1273dd92015-07-12 21:05:08 +02001344 writel(RW_MGR_GUARANTEED_WRITE_WAIT0,
1345 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001346
Marek Vasut1273dd92015-07-12 21:05:08 +02001347 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001348
Marek Vasut1273dd92015-07-12 21:05:08 +02001349 writel(RW_MGR_GUARANTEED_WRITE_WAIT1,
1350 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001351
Marek Vasut1273dd92015-07-12 21:05:08 +02001352 writel(0x04, &sdr_rw_load_mgr_regs->load_cntr2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001353
Marek Vasut1273dd92015-07-12 21:05:08 +02001354 writel(RW_MGR_GUARANTEED_WRITE_WAIT2,
1355 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001356
Marek Vasut1273dd92015-07-12 21:05:08 +02001357 writel(0x04, &sdr_rw_load_mgr_regs->load_cntr3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001358
Marek Vasut1273dd92015-07-12 21:05:08 +02001359 writel(RW_MGR_GUARANTEED_WRITE_WAIT3,
1360 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001361
Marek Vasut1273dd92015-07-12 21:05:08 +02001362 writel(RW_MGR_GUARANTEED_WRITE, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1363 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001364 }
1365
1366 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
1367}
1368
Marek Vasut783fcf52015-07-20 03:26:05 +02001369/**
1370 * rw_mgr_mem_calibrate_read_test() - Perform READ test on single rank
1371 * @rank_bgn: Rank number
1372 * @group: Read/Write group
1373 * @num_tries: Number of retries of the test
1374 * @all_correct: All bits must be correct in the mask
1375 * @bit_chk: Resulting bit mask after the test
1376 * @all_groups: Test all R/W groups
1377 * @all_ranks: Test all ranks
1378 *
1379 * Try a read and see if it returns correct data back. Test has dummy reads
1380 * inserted into the mix used to align DQS enable. Test has more thorough
1381 * checks than the regular read test.
Dinh Nguyen3da42852015-06-02 22:52:49 -05001382 */
Marek Vasut3cb8bf32015-07-19 07:48:58 +02001383static int
1384rw_mgr_mem_calibrate_read_test(const u32 rank_bgn, const u32 group,
1385 const u32 num_tries, const u32 all_correct,
1386 u32 *bit_chk,
1387 const u32 all_groups, const u32 all_ranks)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001388{
Marek Vasut3cb8bf32015-07-19 07:48:58 +02001389 const u32 rank_end = all_ranks ? RW_MGR_MEM_NUMBER_OF_RANKS :
Dinh Nguyen3da42852015-06-02 22:52:49 -05001390 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
Marek Vasut3cb8bf32015-07-19 07:48:58 +02001391 const u32 quick_read_mode =
1392 ((STATIC_CALIB_STEPS & CALIB_SKIP_DELAY_SWEEPS) &&
1393 ENABLE_SUPER_QUICK_CALIBRATION);
1394 u32 correct_mask_vg = param->read_correct_mask_vg;
1395 u32 tmp_bit_chk;
1396 u32 base_rw_mgr;
1397 u32 addr;
1398
1399 int r, vg, ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001400
1401 *bit_chk = param->read_correct_mask;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001402
1403 for (r = rank_bgn; r < rank_end; r++) {
1404 if (param->skip_ranks[r])
1405 /* request to skip the rank */
1406 continue;
1407
1408 /* set rank */
1409 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1410
Marek Vasut1273dd92015-07-12 21:05:08 +02001411 writel(0x10, &sdr_rw_load_mgr_regs->load_cntr1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001412
Marek Vasut1273dd92015-07-12 21:05:08 +02001413 writel(RW_MGR_READ_B2B_WAIT1,
1414 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001415
Marek Vasut1273dd92015-07-12 21:05:08 +02001416 writel(0x10, &sdr_rw_load_mgr_regs->load_cntr2);
1417 writel(RW_MGR_READ_B2B_WAIT2,
1418 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001419
Dinh Nguyen3da42852015-06-02 22:52:49 -05001420 if (quick_read_mode)
Marek Vasut1273dd92015-07-12 21:05:08 +02001421 writel(0x1, &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001422 /* need at least two (1+1) reads to capture failures */
1423 else if (all_groups)
Marek Vasut1273dd92015-07-12 21:05:08 +02001424 writel(0x06, &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001425 else
Marek Vasut1273dd92015-07-12 21:05:08 +02001426 writel(0x32, &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001427
Marek Vasut1273dd92015-07-12 21:05:08 +02001428 writel(RW_MGR_READ_B2B,
1429 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001430 if (all_groups)
1431 writel(RW_MGR_MEM_IF_READ_DQS_WIDTH *
1432 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1,
Marek Vasut1273dd92015-07-12 21:05:08 +02001433 &sdr_rw_load_mgr_regs->load_cntr3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001434 else
Marek Vasut1273dd92015-07-12 21:05:08 +02001435 writel(0x0, &sdr_rw_load_mgr_regs->load_cntr3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001436
Marek Vasut1273dd92015-07-12 21:05:08 +02001437 writel(RW_MGR_READ_B2B,
1438 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001439
1440 tmp_bit_chk = 0;
Marek Vasut7ce23bb2015-07-19 07:51:17 +02001441 for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1; vg >= 0;
1442 vg--) {
Marek Vasutba522c72015-07-19 07:57:28 +02001443 /* Reset the FIFOs to get pointers to known state. */
Marek Vasut1273dd92015-07-12 21:05:08 +02001444 writel(0, &phy_mgr_cmd->fifo_reset);
1445 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1446 RW_MGR_RESET_READ_DATAPATH_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001447
Marek Vasutba522c72015-07-19 07:57:28 +02001448 if (all_groups) {
1449 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1450 RW_MGR_RUN_ALL_GROUPS_OFFSET;
1451 } else {
1452 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1453 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
1454 }
Marek Vasutc4815f72015-07-12 19:03:33 +02001455
Marek Vasut17fdc912015-07-12 20:05:54 +02001456 writel(RW_MGR_READ_B2B, addr +
Dinh Nguyen3da42852015-06-02 22:52:49 -05001457 ((group * RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS +
1458 vg) << 2));
1459
Marek Vasut1273dd92015-07-12 21:05:08 +02001460 base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
Marek Vasutba522c72015-07-19 07:57:28 +02001461 tmp_bit_chk <<= RW_MGR_MEM_DQ_PER_READ_DQS /
1462 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
1463 tmp_bit_chk |= correct_mask_vg & ~(base_rw_mgr);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001464 }
Marek Vasut7ce23bb2015-07-19 07:51:17 +02001465
Dinh Nguyen3da42852015-06-02 22:52:49 -05001466 *bit_chk &= tmp_bit_chk;
1467 }
1468
Marek Vasutc4815f72015-07-12 19:03:33 +02001469 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_RUN_SINGLE_GROUP_OFFSET;
Marek Vasut17fdc912015-07-12 20:05:54 +02001470 writel(RW_MGR_CLEAR_DQS_ENABLE, addr + (group << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05001471
Marek Vasut3853d652015-07-19 07:44:21 +02001472 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
1473
Dinh Nguyen3da42852015-06-02 22:52:49 -05001474 if (all_correct) {
Marek Vasut3853d652015-07-19 07:44:21 +02001475 ret = (*bit_chk == param->read_correct_mask);
1476 debug_cond(DLEVEL == 2,
1477 "%s:%d read_test(%u,ALL,%u) => (%u == %u) => %i\n",
1478 __func__, __LINE__, group, all_groups, *bit_chk,
1479 param->read_correct_mask, ret);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001480 } else {
Marek Vasut3853d652015-07-19 07:44:21 +02001481 ret = (*bit_chk != 0x00);
1482 debug_cond(DLEVEL == 2,
1483 "%s:%d read_test(%u,ONE,%u) => (%u != %u) => %i\n",
1484 __func__, __LINE__, group, all_groups, *bit_chk,
1485 0, ret);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001486 }
Marek Vasut3853d652015-07-19 07:44:21 +02001487
1488 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001489}
1490
Marek Vasut96df6032015-07-19 07:35:36 +02001491/**
1492 * rw_mgr_mem_calibrate_read_test_all_ranks() - Perform READ test on all ranks
1493 * @grp: Read/Write group
1494 * @num_tries: Number of retries of the test
1495 * @all_correct: All bits must be correct in the mask
1496 * @all_groups: Test all R/W groups
1497 *
1498 * Perform a READ test across all memory ranks.
1499 */
1500static int
1501rw_mgr_mem_calibrate_read_test_all_ranks(const u32 grp, const u32 num_tries,
1502 const u32 all_correct,
1503 const u32 all_groups)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001504{
Marek Vasut96df6032015-07-19 07:35:36 +02001505 u32 bit_chk;
1506 return rw_mgr_mem_calibrate_read_test(0, grp, num_tries, all_correct,
1507 &bit_chk, all_groups, 1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001508}
1509
Marek Vasut60bb8a82015-07-19 06:25:27 +02001510/**
1511 * rw_mgr_incr_vfifo() - Increase VFIFO value
1512 * @grp: Read/Write group
Marek Vasut60bb8a82015-07-19 06:25:27 +02001513 *
1514 * Increase VFIFO value.
1515 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001516static void rw_mgr_incr_vfifo(const u32 grp)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001517{
Marek Vasut1273dd92015-07-12 21:05:08 +02001518 writel(grp, &phy_mgr_cmd->inc_vfifo_hard_phy);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001519}
1520
Marek Vasut60bb8a82015-07-19 06:25:27 +02001521/**
1522 * rw_mgr_decr_vfifo() - Decrease VFIFO value
1523 * @grp: Read/Write group
Marek Vasut60bb8a82015-07-19 06:25:27 +02001524 *
1525 * Decrease VFIFO value.
1526 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001527static void rw_mgr_decr_vfifo(const u32 grp)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001528{
Marek Vasut60bb8a82015-07-19 06:25:27 +02001529 u32 i;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001530
Marek Vasut60bb8a82015-07-19 06:25:27 +02001531 for (i = 0; i < VFIFO_SIZE - 1; i++)
Marek Vasut8c887b62015-07-19 06:37:51 +02001532 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001533}
1534
Marek Vasutd145ca92015-07-19 06:45:43 +02001535/**
1536 * find_vfifo_failing_read() - Push VFIFO to get a failing read
1537 * @grp: Read/Write group
1538 *
1539 * Push VFIFO until a failing read happens.
1540 */
1541static int find_vfifo_failing_read(const u32 grp)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001542{
Marek Vasut96df6032015-07-19 07:35:36 +02001543 u32 v, ret, fail_cnt = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001544
Marek Vasut8c887b62015-07-19 06:37:51 +02001545 for (v = 0; v < VFIFO_SIZE; v++) {
Marek Vasutd145ca92015-07-19 06:45:43 +02001546 debug_cond(DLEVEL == 2, "%s:%d: vfifo %u\n",
Dinh Nguyen3da42852015-06-02 22:52:49 -05001547 __func__, __LINE__, v);
Marek Vasutd145ca92015-07-19 06:45:43 +02001548 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
Marek Vasut96df6032015-07-19 07:35:36 +02001549 PASS_ONE_BIT, 0);
Marek Vasutd145ca92015-07-19 06:45:43 +02001550 if (!ret) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05001551 fail_cnt++;
1552
1553 if (fail_cnt == 2)
Marek Vasutd145ca92015-07-19 06:45:43 +02001554 return v;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001555 }
1556
Marek Vasutd145ca92015-07-19 06:45:43 +02001557 /* Fiddle with FIFO. */
Marek Vasut8c887b62015-07-19 06:37:51 +02001558 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001559 }
1560
Marek Vasutd145ca92015-07-19 06:45:43 +02001561 /* No failing read found! Something must have gone wrong. */
1562 debug_cond(DLEVEL == 2, "%s:%d: vfifo failed\n", __func__, __LINE__);
1563 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001564}
1565
Marek Vasut192d6f92015-07-19 05:26:49 +02001566/**
Marek Vasut52e8f212015-07-19 07:27:06 +02001567 * sdr_find_phase_delay() - Find DQS enable phase or delay
1568 * @working: If 1, look for working phase/delay, if 0, look for non-working
1569 * @delay: If 1, look for delay, if 0, look for phase
1570 * @grp: Read/Write group
1571 * @work: Working window position
1572 * @work_inc: Working window increment
1573 * @pd: DQS Phase/Delay Iterator
1574 *
1575 * Find working or non-working DQS enable phase setting.
1576 */
1577static int sdr_find_phase_delay(int working, int delay, const u32 grp,
1578 u32 *work, const u32 work_inc, u32 *pd)
1579{
1580 const u32 max = delay ? IO_DQS_EN_DELAY_MAX : IO_DQS_EN_PHASE_MAX;
Marek Vasut96df6032015-07-19 07:35:36 +02001581 u32 ret;
Marek Vasut52e8f212015-07-19 07:27:06 +02001582
1583 for (; *pd <= max; (*pd)++) {
1584 if (delay)
1585 scc_mgr_set_dqs_en_delay_all_ranks(grp, *pd);
1586 else
1587 scc_mgr_set_dqs_en_phase_all_ranks(grp, *pd);
1588
1589 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
Marek Vasut96df6032015-07-19 07:35:36 +02001590 PASS_ONE_BIT, 0);
Marek Vasut52e8f212015-07-19 07:27:06 +02001591 if (!working)
1592 ret = !ret;
1593
1594 if (ret)
1595 return 0;
1596
1597 if (work)
1598 *work += work_inc;
1599 }
1600
1601 return -EINVAL;
1602}
1603/**
Marek Vasut192d6f92015-07-19 05:26:49 +02001604 * sdr_find_phase() - Find DQS enable phase
1605 * @working: If 1, look for working phase, if 0, look for non-working phase
1606 * @grp: Read/Write group
Marek Vasut192d6f92015-07-19 05:26:49 +02001607 * @work: Working window position
1608 * @i: Iterator
1609 * @p: DQS Phase Iterator
Marek Vasut192d6f92015-07-19 05:26:49 +02001610 *
1611 * Find working or non-working DQS enable phase setting.
1612 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001613static int sdr_find_phase(int working, const u32 grp, u32 *work,
Marek Vasut86a39dc2015-07-19 05:35:40 +02001614 u32 *i, u32 *p)
Marek Vasut192d6f92015-07-19 05:26:49 +02001615{
Marek Vasut192d6f92015-07-19 05:26:49 +02001616 const u32 end = VFIFO_SIZE + (working ? 0 : 1);
Marek Vasut52e8f212015-07-19 07:27:06 +02001617 int ret;
Marek Vasut192d6f92015-07-19 05:26:49 +02001618
1619 for (; *i < end; (*i)++) {
1620 if (working)
1621 *p = 0;
1622
Marek Vasut52e8f212015-07-19 07:27:06 +02001623 ret = sdr_find_phase_delay(working, 0, grp, work,
1624 IO_DELAY_PER_OPA_TAP, p);
1625 if (!ret)
1626 return 0;
Marek Vasut192d6f92015-07-19 05:26:49 +02001627
1628 if (*p > IO_DQS_EN_PHASE_MAX) {
1629 /* Fiddle with FIFO. */
Marek Vasut8c887b62015-07-19 06:37:51 +02001630 rw_mgr_incr_vfifo(grp);
Marek Vasut192d6f92015-07-19 05:26:49 +02001631 if (!working)
1632 *p = 0;
1633 }
1634 }
1635
1636 return -EINVAL;
1637}
1638
Marek Vasut4c5e5842015-07-19 06:04:00 +02001639/**
1640 * sdr_working_phase() - Find working DQS enable phase
1641 * @grp: Read/Write group
1642 * @work_bgn: Working window start position
Marek Vasut4c5e5842015-07-19 06:04:00 +02001643 * @d: dtaps output value
1644 * @p: DQS Phase Iterator
1645 * @i: Iterator
1646 *
1647 * Find working DQS enable phase setting.
1648 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001649static int sdr_working_phase(const u32 grp, u32 *work_bgn, u32 *d,
Marek Vasut4c5e5842015-07-19 06:04:00 +02001650 u32 *p, u32 *i)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001651{
Marek Vasut35ee8672015-07-19 05:40:06 +02001652 const u32 dtaps_per_ptap = IO_DELAY_PER_OPA_TAP /
1653 IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
Marek Vasut192d6f92015-07-19 05:26:49 +02001654 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001655
Marek Vasut192d6f92015-07-19 05:26:49 +02001656 *work_bgn = 0;
1657
1658 for (*d = 0; *d <= dtaps_per_ptap; (*d)++) {
1659 *i = 0;
Marek Vasut521fe392015-07-19 04:34:12 +02001660 scc_mgr_set_dqs_en_delay_all_ranks(grp, *d);
Marek Vasut8c887b62015-07-19 06:37:51 +02001661 ret = sdr_find_phase(1, grp, work_bgn, i, p);
Marek Vasut192d6f92015-07-19 05:26:49 +02001662 if (!ret)
1663 return 0;
1664 *work_bgn += IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001665 }
1666
Marek Vasut38ed6922015-07-19 05:01:12 +02001667 /* Cannot find working solution */
Marek Vasut192d6f92015-07-19 05:26:49 +02001668 debug_cond(DLEVEL == 2, "%s:%d find_dqs_en_phase: no vfifo/ptap/dtap\n",
1669 __func__, __LINE__);
1670 return -EINVAL;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001671}
1672
Marek Vasut4c5e5842015-07-19 06:04:00 +02001673/**
1674 * sdr_backup_phase() - Find DQS enable backup phase
1675 * @grp: Read/Write group
1676 * @work_bgn: Working window start position
Marek Vasut4c5e5842015-07-19 06:04:00 +02001677 * @p: DQS Phase Iterator
1678 *
1679 * Find DQS enable backup phase setting.
1680 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001681static void sdr_backup_phase(const u32 grp, u32 *work_bgn, u32 *p)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001682{
Marek Vasut96df6032015-07-19 07:35:36 +02001683 u32 tmp_delay, d;
Marek Vasut4c5e5842015-07-19 06:04:00 +02001684 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001685
1686 /* Special case code for backing up a phase */
1687 if (*p == 0) {
1688 *p = IO_DQS_EN_PHASE_MAX;
Marek Vasut8c887b62015-07-19 06:37:51 +02001689 rw_mgr_decr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001690 } else {
1691 (*p)--;
1692 }
1693 tmp_delay = *work_bgn - IO_DELAY_PER_OPA_TAP;
Marek Vasut521fe392015-07-19 04:34:12 +02001694 scc_mgr_set_dqs_en_phase_all_ranks(grp, *p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001695
Marek Vasut49891df62015-07-19 05:48:30 +02001696 for (d = 0; d <= IO_DQS_EN_DELAY_MAX && tmp_delay < *work_bgn; d++) {
1697 scc_mgr_set_dqs_en_delay_all_ranks(grp, d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001698
Marek Vasut4c5e5842015-07-19 06:04:00 +02001699 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
Marek Vasut96df6032015-07-19 07:35:36 +02001700 PASS_ONE_BIT, 0);
Marek Vasut4c5e5842015-07-19 06:04:00 +02001701 if (ret) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05001702 *work_bgn = tmp_delay;
1703 break;
1704 }
Marek Vasut49891df62015-07-19 05:48:30 +02001705
1706 tmp_delay += IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001707 }
1708
Marek Vasut4c5e5842015-07-19 06:04:00 +02001709 /* Restore VFIFO to old state before we decremented it (if needed). */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001710 (*p)++;
1711 if (*p > IO_DQS_EN_PHASE_MAX) {
1712 *p = 0;
Marek Vasut8c887b62015-07-19 06:37:51 +02001713 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001714 }
1715
Marek Vasut521fe392015-07-19 04:34:12 +02001716 scc_mgr_set_dqs_en_delay_all_ranks(grp, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001717}
1718
Marek Vasut4c5e5842015-07-19 06:04:00 +02001719/**
1720 * sdr_nonworking_phase() - Find non-working DQS enable phase
1721 * @grp: Read/Write group
1722 * @work_end: Working window end position
Marek Vasut4c5e5842015-07-19 06:04:00 +02001723 * @p: DQS Phase Iterator
1724 * @i: Iterator
1725 *
1726 * Find non-working DQS enable phase setting.
1727 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001728static int sdr_nonworking_phase(const u32 grp, u32 *work_end, u32 *p, u32 *i)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001729{
Marek Vasut192d6f92015-07-19 05:26:49 +02001730 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001731
1732 (*p)++;
1733 *work_end += IO_DELAY_PER_OPA_TAP;
1734 if (*p > IO_DQS_EN_PHASE_MAX) {
Marek Vasut192d6f92015-07-19 05:26:49 +02001735 /* Fiddle with FIFO. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001736 *p = 0;
Marek Vasut8c887b62015-07-19 06:37:51 +02001737 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001738 }
1739
Marek Vasut8c887b62015-07-19 06:37:51 +02001740 ret = sdr_find_phase(0, grp, work_end, i, p);
Marek Vasut192d6f92015-07-19 05:26:49 +02001741 if (ret) {
1742 /* Cannot see edge of failing read. */
1743 debug_cond(DLEVEL == 2, "%s:%d: end: failed\n",
1744 __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001745 }
1746
Marek Vasut192d6f92015-07-19 05:26:49 +02001747 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001748}
1749
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001750/**
1751 * sdr_find_window_center() - Find center of the working DQS window.
1752 * @grp: Read/Write group
1753 * @work_bgn: First working settings
1754 * @work_end: Last working settings
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001755 *
1756 * Find center of the working DQS enable window.
1757 */
1758static int sdr_find_window_center(const u32 grp, const u32 work_bgn,
Marek Vasut8c887b62015-07-19 06:37:51 +02001759 const u32 work_end)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001760{
Marek Vasut96df6032015-07-19 07:35:36 +02001761 u32 work_mid;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001762 int tmp_delay = 0;
Marek Vasut28fd2422015-07-19 02:56:59 +02001763 int i, p, d;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001764
Marek Vasut28fd2422015-07-19 02:56:59 +02001765 work_mid = (work_bgn + work_end) / 2;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001766
1767 debug_cond(DLEVEL == 2, "work_bgn=%d work_end=%d work_mid=%d\n",
Marek Vasut28fd2422015-07-19 02:56:59 +02001768 work_bgn, work_end, work_mid);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001769 /* Get the middle delay to be less than a VFIFO delay */
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001770 tmp_delay = (IO_DQS_EN_PHASE_MAX + 1) * IO_DELAY_PER_OPA_TAP;
Marek Vasut28fd2422015-07-19 02:56:59 +02001771
Dinh Nguyen3da42852015-06-02 22:52:49 -05001772 debug_cond(DLEVEL == 2, "vfifo ptap delay %d\n", tmp_delay);
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001773 work_mid %= tmp_delay;
Marek Vasut28fd2422015-07-19 02:56:59 +02001774 debug_cond(DLEVEL == 2, "new work_mid %d\n", work_mid);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001775
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001776 tmp_delay = rounddown(work_mid, IO_DELAY_PER_OPA_TAP);
1777 if (tmp_delay > IO_DQS_EN_PHASE_MAX * IO_DELAY_PER_OPA_TAP)
1778 tmp_delay = IO_DQS_EN_PHASE_MAX * IO_DELAY_PER_OPA_TAP;
1779 p = tmp_delay / IO_DELAY_PER_OPA_TAP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001780
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001781 debug_cond(DLEVEL == 2, "new p %d, tmp_delay=%d\n", p, tmp_delay);
1782
1783 d = DIV_ROUND_UP(work_mid - tmp_delay, IO_DELAY_PER_DQS_EN_DCHAIN_TAP);
1784 if (d > IO_DQS_EN_DELAY_MAX)
1785 d = IO_DQS_EN_DELAY_MAX;
1786 tmp_delay += d * IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
1787
Marek Vasut28fd2422015-07-19 02:56:59 +02001788 debug_cond(DLEVEL == 2, "new d %d, tmp_delay=%d\n", d, tmp_delay);
1789
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001790 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
Marek Vasut28fd2422015-07-19 02:56:59 +02001791 scc_mgr_set_dqs_en_delay_all_ranks(grp, d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001792
1793 /*
1794 * push vfifo until we can successfully calibrate. We can do this
1795 * because the largest possible margin in 1 VFIFO cycle.
1796 */
1797 for (i = 0; i < VFIFO_SIZE; i++) {
Marek Vasut8c887b62015-07-19 06:37:51 +02001798 debug_cond(DLEVEL == 2, "find_dqs_en_phase: center\n");
Marek Vasut28fd2422015-07-19 02:56:59 +02001799 if (rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
Dinh Nguyen3da42852015-06-02 22:52:49 -05001800 PASS_ONE_BIT,
Marek Vasut96df6032015-07-19 07:35:36 +02001801 0)) {
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001802 debug_cond(DLEVEL == 2,
Marek Vasut8c887b62015-07-19 06:37:51 +02001803 "%s:%d center: found: ptap=%u dtap=%u\n",
1804 __func__, __LINE__, p, d);
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001805 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001806 }
1807
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001808 /* Fiddle with FIFO. */
Marek Vasut8c887b62015-07-19 06:37:51 +02001809 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001810 }
1811
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001812 debug_cond(DLEVEL == 2, "%s:%d center: failed.\n",
1813 __func__, __LINE__);
1814 return -EINVAL;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001815}
1816
Marek Vasut33756892015-07-20 09:11:09 +02001817/**
1818 * rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase() - Find a good DQS enable to use
1819 * @grp: Read/Write Group
1820 *
1821 * Find a good DQS enable to use.
1822 */
Marek Vasut914546e2015-07-20 09:20:42 +02001823static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001824{
Marek Vasut57355402015-07-20 09:20:20 +02001825 u32 d, p, i;
1826 u32 dtaps_per_ptap;
1827 u32 work_bgn, work_end;
1828 u32 found_passing_read, found_failing_read, initial_failing_dtap;
1829 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001830
1831 debug("%s:%d %u\n", __func__, __LINE__, grp);
1832
1833 reg_file_set_sub_stage(CAL_SUBSTAGE_VFIFO_CENTER);
1834
1835 scc_mgr_set_dqs_en_delay_all_ranks(grp, 0);
1836 scc_mgr_set_dqs_en_phase_all_ranks(grp, 0);
1837
Marek Vasut2f3589c2015-07-19 02:42:21 +02001838 /* Step 0: Determine number of delay taps for each phase tap. */
1839 dtaps_per_ptap = IO_DELAY_PER_OPA_TAP / IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001840
Marek Vasut2f3589c2015-07-19 02:42:21 +02001841 /* Step 1: First push vfifo until we get a failing read. */
Marek Vasutd145ca92015-07-19 06:45:43 +02001842 find_vfifo_failing_read(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001843
Marek Vasut2f3589c2015-07-19 02:42:21 +02001844 /* Step 2: Find first working phase, increment in ptaps. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001845 work_bgn = 0;
Marek Vasut914546e2015-07-20 09:20:42 +02001846 ret = sdr_working_phase(grp, &work_bgn, &d, &p, &i);
1847 if (ret)
1848 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001849
1850 work_end = work_bgn;
1851
1852 /*
Marek Vasut2f3589c2015-07-19 02:42:21 +02001853 * If d is 0 then the working window covers a phase tap and we can
1854 * follow the old procedure. Otherwise, we've found the beginning
Dinh Nguyen3da42852015-06-02 22:52:49 -05001855 * and we need to increment the dtaps until we find the end.
1856 */
1857 if (d == 0) {
Marek Vasut2f3589c2015-07-19 02:42:21 +02001858 /*
1859 * Step 3a: If we have room, back off by one and
1860 * increment in dtaps.
1861 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001862 sdr_backup_phase(grp, &work_bgn, &p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001863
Marek Vasut2f3589c2015-07-19 02:42:21 +02001864 /*
1865 * Step 4a: go forward from working phase to non working
1866 * phase, increment in ptaps.
1867 */
Marek Vasut914546e2015-07-20 09:20:42 +02001868 ret = sdr_nonworking_phase(grp, &work_end, &p, &i);
1869 if (ret)
1870 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001871
Marek Vasut2f3589c2015-07-19 02:42:21 +02001872 /* Step 5a: Back off one from last, increment in dtaps. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001873
1874 /* Special case code for backing up a phase */
1875 if (p == 0) {
1876 p = IO_DQS_EN_PHASE_MAX;
Marek Vasut8c887b62015-07-19 06:37:51 +02001877 rw_mgr_decr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001878 } else {
1879 p = p - 1;
1880 }
1881
1882 work_end -= IO_DELAY_PER_OPA_TAP;
1883 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
1884
Dinh Nguyen3da42852015-06-02 22:52:49 -05001885 d = 0;
1886
Marek Vasut2f3589c2015-07-19 02:42:21 +02001887 debug_cond(DLEVEL == 2, "%s:%d p: ptap=%u\n",
1888 __func__, __LINE__, p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001889 }
1890
Marek Vasut2f3589c2015-07-19 02:42:21 +02001891 /* The dtap increment to find the failing edge is done here. */
Marek Vasut52e8f212015-07-19 07:27:06 +02001892 sdr_find_phase_delay(0, 1, grp, &work_end,
1893 IO_DELAY_PER_DQS_EN_DCHAIN_TAP, &d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001894
1895 /* Go back to working dtap */
1896 if (d != 0)
1897 work_end -= IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
1898
Marek Vasut2f3589c2015-07-19 02:42:21 +02001899 debug_cond(DLEVEL == 2,
1900 "%s:%d p/d: ptap=%u dtap=%u end=%u\n",
1901 __func__, __LINE__, p, d - 1, work_end);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001902
1903 if (work_end < work_bgn) {
1904 /* nil range */
Marek Vasut2f3589c2015-07-19 02:42:21 +02001905 debug_cond(DLEVEL == 2, "%s:%d end-2: failed\n",
1906 __func__, __LINE__);
Marek Vasut914546e2015-07-20 09:20:42 +02001907 return -EINVAL;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001908 }
1909
Marek Vasut2f3589c2015-07-19 02:42:21 +02001910 debug_cond(DLEVEL == 2, "%s:%d found range [%u,%u]\n",
Dinh Nguyen3da42852015-06-02 22:52:49 -05001911 __func__, __LINE__, work_bgn, work_end);
1912
Dinh Nguyen3da42852015-06-02 22:52:49 -05001913 /*
Marek Vasut2f3589c2015-07-19 02:42:21 +02001914 * We need to calculate the number of dtaps that equal a ptap.
1915 * To do that we'll back up a ptap and re-find the edge of the
1916 * window using dtaps
Dinh Nguyen3da42852015-06-02 22:52:49 -05001917 */
Marek Vasut2f3589c2015-07-19 02:42:21 +02001918 debug_cond(DLEVEL == 2, "%s:%d calculate dtaps_per_ptap for tracking\n",
1919 __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001920
1921 /* Special case code for backing up a phase */
1922 if (p == 0) {
1923 p = IO_DQS_EN_PHASE_MAX;
Marek Vasut8c887b62015-07-19 06:37:51 +02001924 rw_mgr_decr_vfifo(grp);
Marek Vasut2f3589c2015-07-19 02:42:21 +02001925 debug_cond(DLEVEL == 2, "%s:%d backedup cycle/phase: p=%u\n",
1926 __func__, __LINE__, p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001927 } else {
1928 p = p - 1;
Marek Vasut2f3589c2015-07-19 02:42:21 +02001929 debug_cond(DLEVEL == 2, "%s:%d backedup phase only: p=%u",
1930 __func__, __LINE__, p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001931 }
1932
1933 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
1934
1935 /*
1936 * Increase dtap until we first see a passing read (in case the
Marek Vasut2f3589c2015-07-19 02:42:21 +02001937 * window is smaller than a ptap), and then a failing read to
1938 * mark the edge of the window again.
Dinh Nguyen3da42852015-06-02 22:52:49 -05001939 */
1940
Marek Vasut2f3589c2015-07-19 02:42:21 +02001941 /* Find a passing read. */
1942 debug_cond(DLEVEL == 2, "%s:%d find passing read\n",
Dinh Nguyen3da42852015-06-02 22:52:49 -05001943 __func__, __LINE__);
Marek Vasut52e8f212015-07-19 07:27:06 +02001944
Dinh Nguyen3da42852015-06-02 22:52:49 -05001945 initial_failing_dtap = d;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001946
Marek Vasut52e8f212015-07-19 07:27:06 +02001947 found_passing_read = !sdr_find_phase_delay(1, 1, grp, NULL, 0, &d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001948 if (found_passing_read) {
Marek Vasut2f3589c2015-07-19 02:42:21 +02001949 /* Find a failing read. */
1950 debug_cond(DLEVEL == 2, "%s:%d find failing read\n",
1951 __func__, __LINE__);
Marek Vasut52e8f212015-07-19 07:27:06 +02001952 d++;
1953 found_failing_read = !sdr_find_phase_delay(0, 1, grp, NULL, 0,
1954 &d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001955 } else {
Marek Vasut2f3589c2015-07-19 02:42:21 +02001956 debug_cond(DLEVEL == 1,
1957 "%s:%d failed to calculate dtaps per ptap. Fall back on static value\n",
1958 __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001959 }
1960
1961 /*
1962 * The dynamically calculated dtaps_per_ptap is only valid if we
1963 * found a passing/failing read. If we didn't, it means d hit the max
1964 * (IO_DQS_EN_DELAY_MAX). Otherwise, dtaps_per_ptap retains its
1965 * statically calculated value.
1966 */
1967 if (found_passing_read && found_failing_read)
1968 dtaps_per_ptap = d - initial_failing_dtap;
1969
Marek Vasut1273dd92015-07-12 21:05:08 +02001970 writel(dtaps_per_ptap, &sdr_reg_file->dtaps_per_ptap);
Marek Vasut2f3589c2015-07-19 02:42:21 +02001971 debug_cond(DLEVEL == 2, "%s:%d dtaps_per_ptap=%u - %u = %u",
1972 __func__, __LINE__, d, initial_failing_dtap, dtaps_per_ptap);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001973
Marek Vasut2f3589c2015-07-19 02:42:21 +02001974 /* Step 6: Find the centre of the window. */
Marek Vasut914546e2015-07-20 09:20:42 +02001975 ret = sdr_find_window_center(grp, work_bgn, work_end);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001976
Marek Vasut914546e2015-07-20 09:20:42 +02001977 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001978}
1979
Marek Vasutc4907892015-07-13 02:11:02 +02001980/**
Marek Vasut901dc362015-07-13 02:48:34 +02001981 * search_stop_check() - Check if the detected edge is valid
1982 * @write: Perform read (Stage 2) or write (Stage 3) calibration
1983 * @d: DQS delay
1984 * @rank_bgn: Rank number
1985 * @write_group: Write Group
1986 * @read_group: Read Group
1987 * @bit_chk: Resulting bit mask after the test
1988 * @sticky_bit_chk: Resulting sticky bit mask after the test
1989 * @use_read_test: Perform read test
1990 *
1991 * Test if the found edge is valid.
1992 */
1993static u32 search_stop_check(const int write, const int d, const int rank_bgn,
1994 const u32 write_group, const u32 read_group,
1995 u32 *bit_chk, u32 *sticky_bit_chk,
1996 const u32 use_read_test)
1997{
1998 const u32 ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
1999 RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
2000 const u32 correct_mask = write ? param->write_correct_mask :
2001 param->read_correct_mask;
2002 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2003 RW_MGR_MEM_DQ_PER_READ_DQS;
2004 u32 ret;
2005 /*
2006 * Stop searching when the read test doesn't pass AND when
2007 * we've seen a passing read on every bit.
2008 */
2009 if (write) { /* WRITE-ONLY */
2010 ret = !rw_mgr_mem_calibrate_write_test(rank_bgn, write_group,
2011 0, PASS_ONE_BIT,
2012 bit_chk, 0);
2013 } else if (use_read_test) { /* READ-ONLY */
2014 ret = !rw_mgr_mem_calibrate_read_test(rank_bgn, read_group,
2015 NUM_READ_PB_TESTS,
2016 PASS_ONE_BIT, bit_chk,
2017 0, 0);
2018 } else { /* READ-ONLY */
2019 rw_mgr_mem_calibrate_write_test(rank_bgn, write_group, 0,
2020 PASS_ONE_BIT, bit_chk, 0);
2021 *bit_chk = *bit_chk >> (per_dqs *
2022 (read_group - (write_group * ratio)));
2023 ret = (*bit_chk == 0);
2024 }
2025 *sticky_bit_chk = *sticky_bit_chk | *bit_chk;
2026 ret = ret && (*sticky_bit_chk == correct_mask);
2027 debug_cond(DLEVEL == 2,
2028 "%s:%d center(left): dtap=%u => %u == %u && %u",
2029 __func__, __LINE__, d,
2030 *sticky_bit_chk, correct_mask, ret);
2031 return ret;
2032}
2033
2034/**
Marek Vasut71120772015-07-13 02:38:15 +02002035 * search_left_edge() - Find left edge of DQ/DQS working phase
2036 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2037 * @rank_bgn: Rank number
2038 * @write_group: Write Group
2039 * @read_group: Read Group
2040 * @test_bgn: Rank number to begin the test
Marek Vasut71120772015-07-13 02:38:15 +02002041 * @sticky_bit_chk: Resulting sticky bit mask after the test
2042 * @left_edge: Left edge of the DQ/DQS phase
2043 * @right_edge: Right edge of the DQ/DQS phase
2044 * @use_read_test: Perform read test
2045 *
2046 * Find left edge of DQ/DQS working phase.
2047 */
2048static void search_left_edge(const int write, const int rank_bgn,
2049 const u32 write_group, const u32 read_group, const u32 test_bgn,
Marek Vasut0c4be192015-07-18 20:34:00 +02002050 u32 *sticky_bit_chk,
Marek Vasut71120772015-07-13 02:38:15 +02002051 int *left_edge, int *right_edge, const u32 use_read_test)
2052{
Marek Vasut71120772015-07-13 02:38:15 +02002053 const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
2054 const u32 dqs_max = write ? IO_IO_OUT1_DELAY_MAX : IO_DQS_IN_DELAY_MAX;
2055 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2056 RW_MGR_MEM_DQ_PER_READ_DQS;
Marek Vasut0c4be192015-07-18 20:34:00 +02002057 u32 stop, bit_chk;
Marek Vasut71120772015-07-13 02:38:15 +02002058 int i, d;
2059
2060 for (d = 0; d <= dqs_max; d++) {
2061 if (write)
2062 scc_mgr_apply_group_dq_out1_delay(d);
2063 else
2064 scc_mgr_apply_group_dq_in_delay(test_bgn, d);
2065
2066 writel(0, &sdr_scc_mgr->update);
2067
Marek Vasut901dc362015-07-13 02:48:34 +02002068 stop = search_stop_check(write, d, rank_bgn, write_group,
Marek Vasut0c4be192015-07-18 20:34:00 +02002069 read_group, &bit_chk, sticky_bit_chk,
Marek Vasut901dc362015-07-13 02:48:34 +02002070 use_read_test);
Marek Vasut71120772015-07-13 02:38:15 +02002071 if (stop == 1)
2072 break;
2073
2074 /* stop != 1 */
2075 for (i = 0; i < per_dqs; i++) {
Marek Vasut0c4be192015-07-18 20:34:00 +02002076 if (bit_chk & 1) {
Marek Vasut71120772015-07-13 02:38:15 +02002077 /*
2078 * Remember a passing test as
2079 * the left_edge.
2080 */
2081 left_edge[i] = d;
2082 } else {
2083 /*
2084 * If a left edge has not been seen
2085 * yet, then a future passing test
2086 * will mark this edge as the right
2087 * edge.
2088 */
2089 if (left_edge[i] == delay_max + 1)
2090 right_edge[i] = -(d + 1);
2091 }
Marek Vasut0c4be192015-07-18 20:34:00 +02002092 bit_chk >>= 1;
Marek Vasut71120772015-07-13 02:38:15 +02002093 }
2094 }
2095
2096 /* Reset DQ delay chains to 0 */
2097 if (write)
2098 scc_mgr_apply_group_dq_out1_delay(0);
2099 else
2100 scc_mgr_apply_group_dq_in_delay(test_bgn, 0);
2101
2102 *sticky_bit_chk = 0;
2103 for (i = per_dqs - 1; i >= 0; i--) {
2104 debug_cond(DLEVEL == 2,
2105 "%s:%d vfifo_center: left_edge[%u]: %d right_edge[%u]: %d\n",
2106 __func__, __LINE__, i, left_edge[i],
2107 i, right_edge[i]);
2108
2109 /*
2110 * Check for cases where we haven't found the left edge,
2111 * which makes our assignment of the the right edge invalid.
2112 * Reset it to the illegal value.
2113 */
2114 if ((left_edge[i] == delay_max + 1) &&
2115 (right_edge[i] != delay_max + 1)) {
2116 right_edge[i] = delay_max + 1;
2117 debug_cond(DLEVEL == 2,
2118 "%s:%d vfifo_center: reset right_edge[%u]: %d\n",
2119 __func__, __LINE__, i, right_edge[i]);
2120 }
2121
2122 /*
2123 * Reset sticky bit
2124 * READ: except for bits where we have seen both
2125 * the left and right edge.
2126 * WRITE: except for bits where we have seen the
2127 * left edge.
2128 */
2129 *sticky_bit_chk <<= 1;
2130 if (write) {
2131 if (left_edge[i] != delay_max + 1)
2132 *sticky_bit_chk |= 1;
2133 } else {
2134 if ((left_edge[i] != delay_max + 1) &&
2135 (right_edge[i] != delay_max + 1))
2136 *sticky_bit_chk |= 1;
2137 }
2138 }
2139
2140
2141}
2142
2143/**
Marek Vasutc4907892015-07-13 02:11:02 +02002144 * search_right_edge() - Find right edge of DQ/DQS working phase
2145 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2146 * @rank_bgn: Rank number
2147 * @write_group: Write Group
2148 * @read_group: Read Group
2149 * @start_dqs: DQS start phase
2150 * @start_dqs_en: DQS enable start phase
Marek Vasutc4907892015-07-13 02:11:02 +02002151 * @sticky_bit_chk: Resulting sticky bit mask after the test
2152 * @left_edge: Left edge of the DQ/DQS phase
2153 * @right_edge: Right edge of the DQ/DQS phase
2154 * @use_read_test: Perform read test
2155 *
2156 * Find right edge of DQ/DQS working phase.
2157 */
2158static int search_right_edge(const int write, const int rank_bgn,
2159 const u32 write_group, const u32 read_group,
2160 const int start_dqs, const int start_dqs_en,
Marek Vasut0c4be192015-07-18 20:34:00 +02002161 u32 *sticky_bit_chk,
Marek Vasutc4907892015-07-13 02:11:02 +02002162 int *left_edge, int *right_edge, const u32 use_read_test)
2163{
Marek Vasutc4907892015-07-13 02:11:02 +02002164 const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
2165 const u32 dqs_max = write ? IO_IO_OUT1_DELAY_MAX : IO_DQS_IN_DELAY_MAX;
2166 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2167 RW_MGR_MEM_DQ_PER_READ_DQS;
Marek Vasut0c4be192015-07-18 20:34:00 +02002168 u32 stop, bit_chk;
Marek Vasutc4907892015-07-13 02:11:02 +02002169 int i, d;
2170
2171 for (d = 0; d <= dqs_max - start_dqs; d++) {
2172 if (write) { /* WRITE-ONLY */
2173 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group,
2174 d + start_dqs);
2175 } else { /* READ-ONLY */
2176 scc_mgr_set_dqs_bus_in_delay(read_group, d + start_dqs);
2177 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
2178 uint32_t delay = d + start_dqs_en;
2179 if (delay > IO_DQS_EN_DELAY_MAX)
2180 delay = IO_DQS_EN_DELAY_MAX;
2181 scc_mgr_set_dqs_en_delay(read_group, delay);
2182 }
2183 scc_mgr_load_dqs(read_group);
2184 }
2185
2186 writel(0, &sdr_scc_mgr->update);
2187
Marek Vasut901dc362015-07-13 02:48:34 +02002188 stop = search_stop_check(write, d, rank_bgn, write_group,
Marek Vasut0c4be192015-07-18 20:34:00 +02002189 read_group, &bit_chk, sticky_bit_chk,
Marek Vasut901dc362015-07-13 02:48:34 +02002190 use_read_test);
Marek Vasutc4907892015-07-13 02:11:02 +02002191 if (stop == 1) {
2192 if (write && (d == 0)) { /* WRITE-ONLY */
2193 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
2194 /*
2195 * d = 0 failed, but it passed when
2196 * testing the left edge, so it must be
2197 * marginal, set it to -1
2198 */
2199 if (right_edge[i] == delay_max + 1 &&
2200 left_edge[i] != delay_max + 1)
2201 right_edge[i] = -1;
2202 }
2203 }
2204 break;
2205 }
2206
2207 /* stop != 1 */
2208 for (i = 0; i < per_dqs; i++) {
Marek Vasut0c4be192015-07-18 20:34:00 +02002209 if (bit_chk & 1) {
Marek Vasutc4907892015-07-13 02:11:02 +02002210 /*
2211 * Remember a passing test as
2212 * the right_edge.
2213 */
2214 right_edge[i] = d;
2215 } else {
2216 if (d != 0) {
2217 /*
2218 * If a right edge has not
2219 * been seen yet, then a future
2220 * passing test will mark this
2221 * edge as the left edge.
2222 */
2223 if (right_edge[i] == delay_max + 1)
2224 left_edge[i] = -(d + 1);
2225 } else {
2226 /*
2227 * d = 0 failed, but it passed
2228 * when testing the left edge,
2229 * so it must be marginal, set
2230 * it to -1
2231 */
2232 if (right_edge[i] == delay_max + 1 &&
2233 left_edge[i] != delay_max + 1)
2234 right_edge[i] = -1;
2235 /*
2236 * If a right edge has not been
2237 * seen yet, then a future
2238 * passing test will mark this
2239 * edge as the left edge.
2240 */
2241 else if (right_edge[i] == delay_max + 1)
2242 left_edge[i] = -(d + 1);
2243 }
2244 }
2245
2246 debug_cond(DLEVEL == 2, "%s:%d center[r,d=%u]: ",
2247 __func__, __LINE__, d);
2248 debug_cond(DLEVEL == 2,
2249 "bit_chk_test=%i left_edge[%u]: %d ",
Marek Vasut0c4be192015-07-18 20:34:00 +02002250 bit_chk & 1, i, left_edge[i]);
Marek Vasutc4907892015-07-13 02:11:02 +02002251 debug_cond(DLEVEL == 2, "right_edge[%u]: %d\n", i,
2252 right_edge[i]);
Marek Vasut0c4be192015-07-18 20:34:00 +02002253 bit_chk >>= 1;
Marek Vasutc4907892015-07-13 02:11:02 +02002254 }
2255 }
2256
2257 /* Check that all bits have a window */
2258 for (i = 0; i < per_dqs; i++) {
2259 debug_cond(DLEVEL == 2,
2260 "%s:%d write_center: left_edge[%u]: %d right_edge[%u]: %d",
2261 __func__, __LINE__, i, left_edge[i],
2262 i, right_edge[i]);
2263 if ((left_edge[i] == dqs_max + 1) ||
2264 (right_edge[i] == dqs_max + 1))
2265 return i + 1; /* FIXME: If we fail, retval > 0 */
2266 }
2267
2268 return 0;
2269}
2270
Marek Vasutafb3eb82015-07-18 19:18:06 +02002271/**
2272 * get_window_mid_index() - Find the best middle setting of DQ/DQS phase
2273 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2274 * @left_edge: Left edge of the DQ/DQS phase
2275 * @right_edge: Right edge of the DQ/DQS phase
2276 * @mid_min: Best DQ/DQS phase middle setting
2277 *
2278 * Find index and value of the middle of the DQ/DQS working phase.
2279 */
2280static int get_window_mid_index(const int write, int *left_edge,
2281 int *right_edge, int *mid_min)
2282{
2283 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2284 RW_MGR_MEM_DQ_PER_READ_DQS;
2285 int i, mid, min_index;
2286
2287 /* Find middle of window for each DQ bit */
2288 *mid_min = left_edge[0] - right_edge[0];
2289 min_index = 0;
2290 for (i = 1; i < per_dqs; i++) {
2291 mid = left_edge[i] - right_edge[i];
2292 if (mid < *mid_min) {
2293 *mid_min = mid;
2294 min_index = i;
2295 }
2296 }
2297
2298 /*
2299 * -mid_min/2 represents the amount that we need to move DQS.
2300 * If mid_min is odd and positive we'll need to add one to make
2301 * sure the rounding in further calculations is correct (always
2302 * bias to the right), so just add 1 for all positive values.
2303 */
2304 if (*mid_min > 0)
2305 (*mid_min)++;
2306 *mid_min = *mid_min / 2;
2307
2308 debug_cond(DLEVEL == 1, "%s:%d vfifo_center: *mid_min=%d (index=%u)\n",
2309 __func__, __LINE__, *mid_min, min_index);
2310 return min_index;
2311}
2312
Marek Vasutffb8b662015-07-18 19:46:26 +02002313/**
2314 * center_dq_windows() - Center the DQ/DQS windows
2315 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2316 * @left_edge: Left edge of the DQ/DQS phase
2317 * @right_edge: Right edge of the DQ/DQS phase
2318 * @mid_min: Adjusted DQ/DQS phase middle setting
2319 * @orig_mid_min: Original DQ/DQS phase middle setting
2320 * @min_index: DQ/DQS phase middle setting index
2321 * @test_bgn: Rank number to begin the test
2322 * @dq_margin: Amount of shift for the DQ
2323 * @dqs_margin: Amount of shift for the DQS
2324 *
2325 * Align the DQ/DQS windows in each group.
2326 */
2327static void center_dq_windows(const int write, int *left_edge, int *right_edge,
2328 const int mid_min, const int orig_mid_min,
2329 const int min_index, const int test_bgn,
2330 int *dq_margin, int *dqs_margin)
2331{
2332 const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
2333 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2334 RW_MGR_MEM_DQ_PER_READ_DQS;
2335 const u32 delay_off = write ? SCC_MGR_IO_OUT1_DELAY_OFFSET :
2336 SCC_MGR_IO_IN_DELAY_OFFSET;
2337 const u32 addr = SDR_PHYGRP_SCCGRP_ADDRESS | delay_off;
2338
2339 u32 temp_dq_io_delay1, temp_dq_io_delay2;
2340 int shift_dq, i, p;
2341
2342 /* Initialize data for export structures */
2343 *dqs_margin = delay_max + 1;
2344 *dq_margin = delay_max + 1;
2345
2346 /* add delay to bring centre of all DQ windows to the same "level" */
2347 for (i = 0, p = test_bgn; i < per_dqs; i++, p++) {
2348 /* Use values before divide by 2 to reduce round off error */
2349 shift_dq = (left_edge[i] - right_edge[i] -
2350 (left_edge[min_index] - right_edge[min_index]))/2 +
2351 (orig_mid_min - mid_min);
2352
2353 debug_cond(DLEVEL == 2,
2354 "vfifo_center: before: shift_dq[%u]=%d\n",
2355 i, shift_dq);
2356
2357 temp_dq_io_delay1 = readl(addr + (p << 2));
2358 temp_dq_io_delay2 = readl(addr + (i << 2));
2359
2360 if (shift_dq + temp_dq_io_delay1 > delay_max)
2361 shift_dq = delay_max - temp_dq_io_delay2;
2362 else if (shift_dq + temp_dq_io_delay1 < 0)
2363 shift_dq = -temp_dq_io_delay1;
2364
2365 debug_cond(DLEVEL == 2,
2366 "vfifo_center: after: shift_dq[%u]=%d\n",
2367 i, shift_dq);
2368
2369 if (write)
2370 scc_mgr_set_dq_out1_delay(i, temp_dq_io_delay1 + shift_dq);
2371 else
2372 scc_mgr_set_dq_in_delay(p, temp_dq_io_delay1 + shift_dq);
2373
2374 scc_mgr_load_dq(p);
2375
2376 debug_cond(DLEVEL == 2,
2377 "vfifo_center: margin[%u]=[%d,%d]\n", i,
2378 left_edge[i] - shift_dq + (-mid_min),
2379 right_edge[i] + shift_dq - (-mid_min));
2380
2381 /* To determine values for export structures */
2382 if (left_edge[i] - shift_dq + (-mid_min) < *dq_margin)
2383 *dq_margin = left_edge[i] - shift_dq + (-mid_min);
2384
2385 if (right_edge[i] + shift_dq - (-mid_min) < *dqs_margin)
2386 *dqs_margin = right_edge[i] + shift_dq - (-mid_min);
2387 }
2388
2389}
2390
Marek Vasutac63b9a2015-07-21 04:27:32 +02002391/**
2392 * rw_mgr_mem_calibrate_vfifo_center() - Per-bit deskew DQ and centering
2393 * @rank_bgn: Rank number
2394 * @rw_group: Read/Write Group
2395 * @test_bgn: Rank at which the test begins
2396 * @use_read_test: Perform a read test
2397 * @update_fom: Update FOM
2398 *
2399 * Per-bit deskew DQ and centering.
2400 */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002401static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
2402 const u32 rw_group, const u32 test_bgn,
2403 const int use_read_test, const int update_fom)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002404{
Marek Vasut5d6db442015-07-18 19:57:12 +02002405 const u32 addr =
2406 SDR_PHYGRP_SCCGRP_ADDRESS + SCC_MGR_DQS_IN_DELAY_OFFSET +
Marek Vasut0113c3e2015-07-18 20:42:27 +02002407 (rw_group << 2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002408 /*
2409 * Store these as signed since there are comparisons with
2410 * signed numbers.
2411 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05002412 uint32_t sticky_bit_chk;
2413 int32_t left_edge[RW_MGR_MEM_DQ_PER_READ_DQS];
2414 int32_t right_edge[RW_MGR_MEM_DQ_PER_READ_DQS];
Dinh Nguyen3da42852015-06-02 22:52:49 -05002415 int32_t orig_mid_min, mid_min;
Marek Vasut5d6db442015-07-18 19:57:12 +02002416 int32_t new_dqs, start_dqs, start_dqs_en, final_dqs_en;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002417 int32_t dq_margin, dqs_margin;
Marek Vasut5d6db442015-07-18 19:57:12 +02002418 int i, min_index;
Marek Vasutc4907892015-07-13 02:11:02 +02002419 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002420
Marek Vasut0113c3e2015-07-18 20:42:27 +02002421 debug("%s:%d: %u %u", __func__, __LINE__, rw_group, test_bgn);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002422
Marek Vasut5d6db442015-07-18 19:57:12 +02002423 start_dqs = readl(addr);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002424 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS)
Marek Vasut5d6db442015-07-18 19:57:12 +02002425 start_dqs_en = readl(addr - IO_DQS_EN_DELAY_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002426
2427 /* set the left and right edge of each bit to an illegal value */
2428 /* use (IO_IO_IN_DELAY_MAX + 1) as an illegal value */
2429 sticky_bit_chk = 0;
2430 for (i = 0; i < RW_MGR_MEM_DQ_PER_READ_DQS; i++) {
2431 left_edge[i] = IO_IO_IN_DELAY_MAX + 1;
2432 right_edge[i] = IO_IO_IN_DELAY_MAX + 1;
2433 }
2434
Dinh Nguyen3da42852015-06-02 22:52:49 -05002435 /* Search for the left edge of the window for each bit */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002436 search_left_edge(0, rank_bgn, rw_group, rw_group, test_bgn,
Marek Vasut0c4be192015-07-18 20:34:00 +02002437 &sticky_bit_chk,
Marek Vasut71120772015-07-13 02:38:15 +02002438 left_edge, right_edge, use_read_test);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002439
Marek Vasutf0712c32015-07-18 08:01:45 +02002440
Dinh Nguyen3da42852015-06-02 22:52:49 -05002441 /* Search for the right edge of the window for each bit */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002442 ret = search_right_edge(0, rank_bgn, rw_group, rw_group,
Marek Vasutc4907892015-07-13 02:11:02 +02002443 start_dqs, start_dqs_en,
Marek Vasut0c4be192015-07-18 20:34:00 +02002444 &sticky_bit_chk,
Marek Vasutc4907892015-07-13 02:11:02 +02002445 left_edge, right_edge, use_read_test);
2446 if (ret) {
2447 /*
2448 * Restore delay chain settings before letting the loop
2449 * in rw_mgr_mem_calibrate_vfifo to retry different
2450 * dqs/ck relationships.
2451 */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002452 scc_mgr_set_dqs_bus_in_delay(rw_group, start_dqs);
Marek Vasutc4907892015-07-13 02:11:02 +02002453 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS)
Marek Vasut0113c3e2015-07-18 20:42:27 +02002454 scc_mgr_set_dqs_en_delay(rw_group, start_dqs_en);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002455
Marek Vasut0113c3e2015-07-18 20:42:27 +02002456 scc_mgr_load_dqs(rw_group);
Marek Vasut1273dd92015-07-12 21:05:08 +02002457 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002458
Marek Vasutc4907892015-07-13 02:11:02 +02002459 debug_cond(DLEVEL == 1,
2460 "%s:%d vfifo_center: failed to find edge [%u]: %d %d",
2461 __func__, __LINE__, i, left_edge[i], right_edge[i]);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002462 if (use_read_test) {
Marek Vasut0113c3e2015-07-18 20:42:27 +02002463 set_failing_group_stage(rw_group *
Marek Vasutc4907892015-07-13 02:11:02 +02002464 RW_MGR_MEM_DQ_PER_READ_DQS + i,
2465 CAL_STAGE_VFIFO,
2466 CAL_SUBSTAGE_VFIFO_CENTER);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002467 } else {
Marek Vasut0113c3e2015-07-18 20:42:27 +02002468 set_failing_group_stage(rw_group *
Marek Vasutc4907892015-07-13 02:11:02 +02002469 RW_MGR_MEM_DQ_PER_READ_DQS + i,
2470 CAL_STAGE_VFIFO_AFTER_WRITES,
2471 CAL_SUBSTAGE_VFIFO_CENTER);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002472 }
Marek Vasut98668242015-07-18 20:44:28 +02002473 return -EIO;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002474 }
2475
Marek Vasutafb3eb82015-07-18 19:18:06 +02002476 min_index = get_window_mid_index(0, left_edge, right_edge, &mid_min);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002477
2478 /* Determine the amount we can change DQS (which is -mid_min) */
2479 orig_mid_min = mid_min;
2480 new_dqs = start_dqs - mid_min;
2481 if (new_dqs > IO_DQS_IN_DELAY_MAX)
2482 new_dqs = IO_DQS_IN_DELAY_MAX;
2483 else if (new_dqs < 0)
2484 new_dqs = 0;
2485
2486 mid_min = start_dqs - new_dqs;
2487 debug_cond(DLEVEL == 1, "vfifo_center: new mid_min=%d new_dqs=%d\n",
2488 mid_min, new_dqs);
2489
2490 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
2491 if (start_dqs_en - mid_min > IO_DQS_EN_DELAY_MAX)
2492 mid_min += start_dqs_en - mid_min - IO_DQS_EN_DELAY_MAX;
2493 else if (start_dqs_en - mid_min < 0)
2494 mid_min += start_dqs_en - mid_min;
2495 }
2496 new_dqs = start_dqs - mid_min;
2497
Marek Vasutf0712c32015-07-18 08:01:45 +02002498 debug_cond(DLEVEL == 1,
2499 "vfifo_center: start_dqs=%d start_dqs_en=%d new_dqs=%d mid_min=%d\n",
2500 start_dqs,
Dinh Nguyen3da42852015-06-02 22:52:49 -05002501 IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS ? start_dqs_en : -1,
2502 new_dqs, mid_min);
2503
Marek Vasutffb8b662015-07-18 19:46:26 +02002504 /* Add delay to bring centre of all DQ windows to the same "level". */
2505 center_dq_windows(0, left_edge, right_edge, mid_min, orig_mid_min,
2506 min_index, test_bgn, &dq_margin, &dqs_margin);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002507
Dinh Nguyen3da42852015-06-02 22:52:49 -05002508 /* Move DQS-en */
2509 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
Marek Vasut5d6db442015-07-18 19:57:12 +02002510 final_dqs_en = start_dqs_en - mid_min;
Marek Vasut0113c3e2015-07-18 20:42:27 +02002511 scc_mgr_set_dqs_en_delay(rw_group, final_dqs_en);
2512 scc_mgr_load_dqs(rw_group);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002513 }
2514
2515 /* Move DQS */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002516 scc_mgr_set_dqs_bus_in_delay(rw_group, new_dqs);
2517 scc_mgr_load_dqs(rw_group);
Marek Vasutf0712c32015-07-18 08:01:45 +02002518 debug_cond(DLEVEL == 2,
2519 "%s:%d vfifo_center: dq_margin=%d dqs_margin=%d",
2520 __func__, __LINE__, dq_margin, dqs_margin);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002521
2522 /*
2523 * Do not remove this line as it makes sure all of our decisions
2524 * have been applied. Apply the update bit.
2525 */
Marek Vasut1273dd92015-07-12 21:05:08 +02002526 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002527
Marek Vasut98668242015-07-18 20:44:28 +02002528 if ((dq_margin < 0) || (dqs_margin < 0))
2529 return -EINVAL;
2530
2531 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002532}
2533
Marek Vasutbce24ef2015-07-17 03:16:45 +02002534/**
Marek Vasut04372fb2015-07-18 02:46:56 +02002535 * rw_mgr_mem_calibrate_guaranteed_write() - Perform guaranteed write into the device
2536 * @rw_group: Read/Write Group
2537 * @phase: DQ/DQS phase
2538 *
2539 * Because initially no communication ca be reliably performed with the memory
2540 * device, the sequencer uses a guaranteed write mechanism to write data into
2541 * the memory device.
2542 */
2543static int rw_mgr_mem_calibrate_guaranteed_write(const u32 rw_group,
2544 const u32 phase)
2545{
Marek Vasut04372fb2015-07-18 02:46:56 +02002546 int ret;
2547
2548 /* Set a particular DQ/DQS phase. */
2549 scc_mgr_set_dqdqs_output_phase_all_ranks(rw_group, phase);
2550
2551 debug_cond(DLEVEL == 1, "%s:%d guaranteed write: g=%u p=%u\n",
2552 __func__, __LINE__, rw_group, phase);
2553
2554 /*
2555 * Altera EMI_RM 2015.05.04 :: Figure 1-25
2556 * Load up the patterns used by read calibration using the
2557 * current DQDQS phase.
2558 */
2559 rw_mgr_mem_calibrate_read_load_patterns(0, 1);
2560
2561 if (gbl->phy_debug_mode_flags & PHY_DEBUG_DISABLE_GUARANTEED_READ)
2562 return 0;
2563
2564 /*
2565 * Altera EMI_RM 2015.05.04 :: Figure 1-26
2566 * Back-to-Back reads of the patterns used for calibration.
2567 */
Marek Vasutd844c7d2015-07-18 03:55:07 +02002568 ret = rw_mgr_mem_calibrate_read_test_patterns(0, rw_group, 1);
2569 if (ret)
Marek Vasut04372fb2015-07-18 02:46:56 +02002570 debug_cond(DLEVEL == 1,
2571 "%s:%d Guaranteed read test failed: g=%u p=%u\n",
2572 __func__, __LINE__, rw_group, phase);
Marek Vasutd844c7d2015-07-18 03:55:07 +02002573 return ret;
Marek Vasut04372fb2015-07-18 02:46:56 +02002574}
2575
2576/**
Marek Vasutf09da112015-07-18 02:57:32 +02002577 * rw_mgr_mem_calibrate_dqs_enable_calibration() - DQS Enable Calibration
2578 * @rw_group: Read/Write Group
2579 * @test_bgn: Rank at which the test begins
2580 *
2581 * DQS enable calibration ensures reliable capture of the DQ signal without
2582 * glitches on the DQS line.
2583 */
2584static int rw_mgr_mem_calibrate_dqs_enable_calibration(const u32 rw_group,
2585 const u32 test_bgn)
2586{
Marek Vasutf09da112015-07-18 02:57:32 +02002587 /*
2588 * Altera EMI_RM 2015.05.04 :: Figure 1-27
2589 * DQS and DQS Eanble Signal Relationships.
2590 */
Marek Vasut28ea8272015-07-18 04:28:42 +02002591
2592 /* We start at zero, so have one less dq to devide among */
2593 const u32 delay_step = IO_IO_IN_DELAY_MAX /
2594 (RW_MGR_MEM_DQ_PER_READ_DQS - 1);
Marek Vasut914546e2015-07-20 09:20:42 +02002595 int ret;
Marek Vasut28ea8272015-07-18 04:28:42 +02002596 u32 i, p, d, r;
2597
2598 debug("%s:%d (%u,%u)\n", __func__, __LINE__, rw_group, test_bgn);
2599
2600 /* Try different dq_in_delays since the DQ path is shorter than DQS. */
2601 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
2602 r += NUM_RANKS_PER_SHADOW_REG) {
2603 for (i = 0, p = test_bgn, d = 0;
2604 i < RW_MGR_MEM_DQ_PER_READ_DQS;
2605 i++, p++, d += delay_step) {
2606 debug_cond(DLEVEL == 1,
2607 "%s:%d: g=%u r=%u i=%u p=%u d=%u\n",
2608 __func__, __LINE__, rw_group, r, i, p, d);
2609
2610 scc_mgr_set_dq_in_delay(p, d);
2611 scc_mgr_load_dq(p);
2612 }
2613
2614 writel(0, &sdr_scc_mgr->update);
2615 }
2616
2617 /*
2618 * Try rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase across different
2619 * dq_in_delay values
2620 */
Marek Vasut914546e2015-07-20 09:20:42 +02002621 ret = rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(rw_group);
Marek Vasut28ea8272015-07-18 04:28:42 +02002622
2623 debug_cond(DLEVEL == 1,
2624 "%s:%d: g=%u found=%u; Reseting delay chain to zero\n",
Marek Vasut914546e2015-07-20 09:20:42 +02002625 __func__, __LINE__, rw_group, !ret);
Marek Vasut28ea8272015-07-18 04:28:42 +02002626
2627 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
2628 r += NUM_RANKS_PER_SHADOW_REG) {
2629 scc_mgr_apply_group_dq_in_delay(test_bgn, 0);
2630 writel(0, &sdr_scc_mgr->update);
2631 }
2632
Marek Vasut914546e2015-07-20 09:20:42 +02002633 return ret;
Marek Vasutf09da112015-07-18 02:57:32 +02002634}
2635
2636/**
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002637 * rw_mgr_mem_calibrate_dq_dqs_centering() - Centering DQ/DQS
2638 * @rw_group: Read/Write Group
2639 * @test_bgn: Rank at which the test begins
2640 * @use_read_test: Perform a read test
2641 * @update_fom: Update FOM
2642 *
2643 * The centerin DQ/DQS stage attempts to align DQ and DQS signals on reads
2644 * within a group.
2645 */
2646static int
2647rw_mgr_mem_calibrate_dq_dqs_centering(const u32 rw_group, const u32 test_bgn,
2648 const int use_read_test,
2649 const int update_fom)
2650
2651{
2652 int ret, grp_calibrated;
2653 u32 rank_bgn, sr;
2654
2655 /*
2656 * Altera EMI_RM 2015.05.04 :: Figure 1-28
2657 * Read per-bit deskew can be done on a per shadow register basis.
2658 */
2659 grp_calibrated = 1;
2660 for (rank_bgn = 0, sr = 0;
2661 rank_bgn < RW_MGR_MEM_NUMBER_OF_RANKS;
2662 rank_bgn += NUM_RANKS_PER_SHADOW_REG, sr++) {
2663 /* Check if this set of ranks should be skipped entirely. */
2664 if (param->skip_shadow_regs[sr])
2665 continue;
2666
2667 ret = rw_mgr_mem_calibrate_vfifo_center(rank_bgn, rw_group,
Marek Vasut0113c3e2015-07-18 20:42:27 +02002668 test_bgn,
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002669 use_read_test,
2670 update_fom);
Marek Vasut98668242015-07-18 20:44:28 +02002671 if (!ret)
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002672 continue;
2673
2674 grp_calibrated = 0;
2675 }
2676
2677 if (!grp_calibrated)
2678 return -EIO;
2679
2680 return 0;
2681}
2682
2683/**
Marek Vasutbce24ef2015-07-17 03:16:45 +02002684 * rw_mgr_mem_calibrate_vfifo() - Calibrate the read valid prediction FIFO
2685 * @rw_group: Read/Write Group
2686 * @test_bgn: Rank at which the test begins
Dinh Nguyen3da42852015-06-02 22:52:49 -05002687 *
Marek Vasutbce24ef2015-07-17 03:16:45 +02002688 * Stage 1: Calibrate the read valid prediction FIFO.
2689 *
2690 * This function implements UniPHY calibration Stage 1, as explained in
2691 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
2692 *
2693 * - read valid prediction will consist of finding:
2694 * - DQS enable phase and DQS enable delay (DQS Enable Calibration)
2695 * - DQS input phase and DQS input delay (DQ/DQS Centering)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002696 * - we also do a per-bit deskew on the DQ lines.
2697 */
Marek Vasutc336ca32015-07-17 04:24:18 +02002698static int rw_mgr_mem_calibrate_vfifo(const u32 rw_group, const u32 test_bgn)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002699{
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002700 uint32_t p, d;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002701 uint32_t dtaps_per_ptap;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002702 uint32_t failed_substage;
2703
Marek Vasut04372fb2015-07-18 02:46:56 +02002704 int ret;
2705
Marek Vasutc336ca32015-07-17 04:24:18 +02002706 debug("%s:%d: %u %u\n", __func__, __LINE__, rw_group, test_bgn);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002707
Marek Vasut7c0a9df2015-07-18 03:15:34 +02002708 /* Update info for sims */
2709 reg_file_set_group(rw_group);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002710 reg_file_set_stage(CAL_STAGE_VFIFO);
Marek Vasut7c0a9df2015-07-18 03:15:34 +02002711 reg_file_set_sub_stage(CAL_SUBSTAGE_GUARANTEED_READ);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002712
Marek Vasut7c0a9df2015-07-18 03:15:34 +02002713 failed_substage = CAL_SUBSTAGE_GUARANTEED_READ;
2714
2715 /* USER Determine number of delay taps for each phase tap. */
Marek Vasutd32badb2015-07-17 03:11:06 +02002716 dtaps_per_ptap = DIV_ROUND_UP(IO_DELAY_PER_OPA_TAP,
2717 IO_DELAY_PER_DQS_EN_DCHAIN_TAP) - 1;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002718
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002719 for (d = 0; d <= dtaps_per_ptap; d += 2) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05002720 /*
2721 * In RLDRAMX we may be messing the delay of pins in
Marek Vasutc336ca32015-07-17 04:24:18 +02002722 * the same write rw_group but outside of the current read
2723 * the rw_group, but that's ok because we haven't calibrated
Marek Vasutac70d2f2015-07-17 03:44:26 +02002724 * output side yet.
Dinh Nguyen3da42852015-06-02 22:52:49 -05002725 */
2726 if (d > 0) {
Marek Vasutf51a7d32015-07-19 02:18:21 +02002727 scc_mgr_apply_group_all_out_delay_add_all_ranks(
Marek Vasutc336ca32015-07-17 04:24:18 +02002728 rw_group, d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002729 }
2730
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002731 for (p = 0; p <= IO_DQDQS_OUT_PHASE_MAX; p++) {
Marek Vasut04372fb2015-07-18 02:46:56 +02002732 /* 1) Guaranteed Write */
2733 ret = rw_mgr_mem_calibrate_guaranteed_write(rw_group, p);
2734 if (ret)
2735 break;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002736
Marek Vasutf09da112015-07-18 02:57:32 +02002737 /* 2) DQS Enable Calibration */
2738 ret = rw_mgr_mem_calibrate_dqs_enable_calibration(rw_group,
2739 test_bgn);
2740 if (ret) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05002741 failed_substage = CAL_SUBSTAGE_DQS_EN_PHASE;
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002742 continue;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002743 }
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002744
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002745 /* 3) Centering DQ/DQS */
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002746 /*
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002747 * If doing read after write calibration, do not update
2748 * FOM now. Do it then.
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002749 */
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002750 ret = rw_mgr_mem_calibrate_dq_dqs_centering(rw_group,
2751 test_bgn, 1, 0);
2752 if (ret) {
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002753 failed_substage = CAL_SUBSTAGE_VFIFO_CENTER;
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002754 continue;
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002755 }
2756
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002757 /* All done. */
2758 goto cal_done_ok;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002759 }
2760 }
2761
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002762 /* Calibration Stage 1 failed. */
Marek Vasutc336ca32015-07-17 04:24:18 +02002763 set_failing_group_stage(rw_group, CAL_STAGE_VFIFO, failed_substage);
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002764 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002765
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002766 /* Calibration Stage 1 completed OK. */
2767cal_done_ok:
Dinh Nguyen3da42852015-06-02 22:52:49 -05002768 /*
2769 * Reset the delay chains back to zero if they have moved > 1
2770 * (check for > 1 because loop will increase d even when pass in
2771 * first case).
2772 */
2773 if (d > 2)
Marek Vasutc336ca32015-07-17 04:24:18 +02002774 scc_mgr_zero_group(rw_group, 1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002775
2776 return 1;
2777}
2778
2779/* VFIFO Calibration -- Read Deskew Calibration after write deskew */
2780static uint32_t rw_mgr_mem_calibrate_vfifo_end(uint32_t read_group,
2781 uint32_t test_bgn)
2782{
2783 uint32_t rank_bgn, sr;
2784 uint32_t grp_calibrated;
2785 uint32_t write_group;
2786
2787 debug("%s:%d %u %u", __func__, __LINE__, read_group, test_bgn);
2788
2789 /* update info for sims */
2790
2791 reg_file_set_stage(CAL_STAGE_VFIFO_AFTER_WRITES);
2792 reg_file_set_sub_stage(CAL_SUBSTAGE_VFIFO_CENTER);
2793
2794 write_group = read_group;
2795
2796 /* update info for sims */
2797 reg_file_set_group(read_group);
2798
2799 grp_calibrated = 1;
2800 /* Read per-bit deskew can be done on a per shadow register basis */
2801 for (rank_bgn = 0, sr = 0; rank_bgn < RW_MGR_MEM_NUMBER_OF_RANKS;
2802 rank_bgn += NUM_RANKS_PER_SHADOW_REG, ++sr) {
2803 /* Determine if this set of ranks should be skipped entirely */
2804 if (!param->skip_shadow_regs[sr]) {
2805 /* This is the last calibration round, update FOM here */
Marek Vasut98668242015-07-18 20:44:28 +02002806 if (rw_mgr_mem_calibrate_vfifo_center(rank_bgn,
Dinh Nguyen3da42852015-06-02 22:52:49 -05002807 read_group,
2808 test_bgn, 0,
2809 1)) {
2810 grp_calibrated = 0;
2811 }
2812 }
2813 }
2814
2815
2816 if (grp_calibrated == 0) {
2817 set_failing_group_stage(write_group,
2818 CAL_STAGE_VFIFO_AFTER_WRITES,
2819 CAL_SUBSTAGE_VFIFO_CENTER);
2820 return 0;
2821 }
2822
2823 return 1;
2824}
2825
2826/* Calibrate LFIFO to find smallest read latency */
2827static uint32_t rw_mgr_mem_calibrate_lfifo(void)
2828{
2829 uint32_t found_one;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002830
2831 debug("%s:%d\n", __func__, __LINE__);
2832
2833 /* update info for sims */
2834 reg_file_set_stage(CAL_STAGE_LFIFO);
2835 reg_file_set_sub_stage(CAL_SUBSTAGE_READ_LATENCY);
2836
2837 /* Load up the patterns used by read calibration for all ranks */
2838 rw_mgr_mem_calibrate_read_load_patterns(0, 1);
2839 found_one = 0;
2840
Dinh Nguyen3da42852015-06-02 22:52:49 -05002841 do {
Marek Vasut1273dd92015-07-12 21:05:08 +02002842 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002843 debug_cond(DLEVEL == 2, "%s:%d lfifo: read_lat=%u",
2844 __func__, __LINE__, gbl->curr_read_lat);
2845
2846 if (!rw_mgr_mem_calibrate_read_test_all_ranks(0,
2847 NUM_READ_TESTS,
2848 PASS_ALL_BITS,
Marek Vasut96df6032015-07-19 07:35:36 +02002849 1)) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05002850 break;
2851 }
2852
2853 found_one = 1;
2854 /* reduce read latency and see if things are working */
2855 /* correctly */
2856 gbl->curr_read_lat--;
2857 } while (gbl->curr_read_lat > 0);
2858
2859 /* reset the fifos to get pointers to known state */
2860
Marek Vasut1273dd92015-07-12 21:05:08 +02002861 writel(0, &phy_mgr_cmd->fifo_reset);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002862
2863 if (found_one) {
2864 /* add a fudge factor to the read latency that was determined */
2865 gbl->curr_read_lat += 2;
Marek Vasut1273dd92015-07-12 21:05:08 +02002866 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002867 debug_cond(DLEVEL == 2, "%s:%d lfifo: success: using \
2868 read_lat=%u\n", __func__, __LINE__,
2869 gbl->curr_read_lat);
2870 return 1;
2871 } else {
2872 set_failing_group_stage(0xff, CAL_STAGE_LFIFO,
2873 CAL_SUBSTAGE_READ_LATENCY);
2874
2875 debug_cond(DLEVEL == 2, "%s:%d lfifo: failed at initial \
2876 read_lat=%u\n", __func__, __LINE__,
2877 gbl->curr_read_lat);
2878 return 0;
2879 }
2880}
2881
Marek Vasutc8570af2015-07-21 05:26:58 +02002882/**
2883 * search_window() - Search for the/part of the window with DM/DQS shift
2884 * @search_dm: If 1, search for the DM shift, if 0, search for DQS shift
2885 * @rank_bgn: Rank number
2886 * @write_group: Write Group
2887 * @bgn_curr: Current window begin
2888 * @end_curr: Current window end
2889 * @bgn_best: Current best window begin
2890 * @end_best: Current best window end
2891 * @win_best: Size of the best window
2892 * @new_dqs: New DQS value (only applicable if search_dm = 0).
2893 *
2894 * Search for the/part of the window with DM/DQS shift.
2895 */
2896static void search_window(const int search_dm,
2897 const u32 rank_bgn, const u32 write_group,
2898 int *bgn_curr, int *end_curr, int *bgn_best,
2899 int *end_best, int *win_best, int new_dqs)
2900{
2901 u32 bit_chk;
2902 const int max = IO_IO_OUT1_DELAY_MAX - new_dqs;
2903 int d, di;
2904
2905 /* Search for the/part of the window with DM/DQS shift. */
2906 for (di = max; di >= 0; di -= DELTA_D) {
2907 if (search_dm) {
2908 d = di;
2909 scc_mgr_apply_group_dm_out1_delay(d);
2910 } else {
2911 /* For DQS, we go from 0...max */
2912 d = max - di;
2913 /*
2914 * Note: This only shifts DQS, so are we limiting ourselve to
2915 * width of DQ unnecessarily.
2916 */
2917 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group,
2918 d + new_dqs);
2919 }
2920
2921 writel(0, &sdr_scc_mgr->update);
2922
2923 if (rw_mgr_mem_calibrate_write_test(rank_bgn, write_group, 1,
2924 PASS_ALL_BITS, &bit_chk,
2925 0)) {
2926 /* Set current end of the window. */
2927 *end_curr = search_dm ? -d : d;
2928
2929 /*
2930 * If a starting edge of our window has not been seen
2931 * this is our current start of the DM window.
2932 */
2933 if (*bgn_curr == IO_IO_OUT1_DELAY_MAX + 1)
2934 *bgn_curr = search_dm ? -d : d;
2935
2936 /*
2937 * If current window is bigger than best seen.
2938 * Set best seen to be current window.
2939 */
2940 if ((*end_curr - *bgn_curr + 1) > *win_best) {
2941 *win_best = *end_curr - *bgn_curr + 1;
2942 *bgn_best = *bgn_curr;
2943 *end_best = *end_curr;
2944 }
2945 } else {
2946 /* We just saw a failing test. Reset temp edge. */
2947 *bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
2948 *end_curr = IO_IO_OUT1_DELAY_MAX + 1;
2949
2950 /* Early exit is only applicable to DQS. */
2951 if (search_dm)
2952 continue;
2953
2954 /*
2955 * Early exit optimization: if the remaining delay
2956 * chain space is less than already seen largest
2957 * window we can exit.
2958 */
2959 if (*win_best - 1 > IO_IO_OUT1_DELAY_MAX - new_dqs - d)
2960 break;
2961 }
2962 }
2963}
2964
Dinh Nguyen3da42852015-06-02 22:52:49 -05002965/*
Marek Vasuta386a502015-07-21 05:33:49 +02002966 * rw_mgr_mem_calibrate_writes_center() - Center all windows
2967 * @rank_bgn: Rank number
2968 * @write_group: Write group
2969 * @test_bgn: Rank at which the test begins
2970 *
2971 * Center all windows. Do per-bit-deskew to possibly increase size of
Dinh Nguyen3da42852015-06-02 22:52:49 -05002972 * certain windows.
2973 */
Marek Vasut3b44f552015-07-21 05:00:42 +02002974static int
2975rw_mgr_mem_calibrate_writes_center(const u32 rank_bgn, const u32 write_group,
2976 const u32 test_bgn)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002977{
Marek Vasutc8570af2015-07-21 05:26:58 +02002978 int i;
Marek Vasut3b44f552015-07-21 05:00:42 +02002979 u32 sticky_bit_chk;
2980 u32 min_index;
Marek Vasut3b44f552015-07-21 05:00:42 +02002981 int left_edge[RW_MGR_MEM_DQ_PER_WRITE_DQS];
2982 int right_edge[RW_MGR_MEM_DQ_PER_WRITE_DQS];
2983 int mid;
2984 int mid_min, orig_mid_min;
2985 int new_dqs, start_dqs;
2986 int dq_margin, dqs_margin, dm_margin;
2987 int bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
2988 int end_curr = IO_IO_OUT1_DELAY_MAX + 1;
2989 int bgn_best = IO_IO_OUT1_DELAY_MAX + 1;
2990 int end_best = IO_IO_OUT1_DELAY_MAX + 1;
2991 int win_best = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002992
Marek Vasutc4907892015-07-13 02:11:02 +02002993 int ret;
2994
Dinh Nguyen3da42852015-06-02 22:52:49 -05002995 debug("%s:%d %u %u", __func__, __LINE__, write_group, test_bgn);
2996
2997 dm_margin = 0;
2998
Marek Vasutc6540872015-07-21 05:29:05 +02002999 start_dqs = readl((SDR_PHYGRP_SCCGRP_ADDRESS |
3000 SCC_MGR_IO_OUT1_DELAY_OFFSET) +
Dinh Nguyen3da42852015-06-02 22:52:49 -05003001 (RW_MGR_MEM_DQ_PER_WRITE_DQS << 2));
3002
Marek Vasut3b44f552015-07-21 05:00:42 +02003003 /* Per-bit deskew. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003004
3005 /*
Marek Vasut3b44f552015-07-21 05:00:42 +02003006 * Set the left and right edge of each bit to an illegal value.
3007 * Use (IO_IO_OUT1_DELAY_MAX + 1) as an illegal value.
Dinh Nguyen3da42852015-06-02 22:52:49 -05003008 */
3009 sticky_bit_chk = 0;
3010 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
3011 left_edge[i] = IO_IO_OUT1_DELAY_MAX + 1;
3012 right_edge[i] = IO_IO_OUT1_DELAY_MAX + 1;
3013 }
3014
Marek Vasut3b44f552015-07-21 05:00:42 +02003015 /* Search for the left edge of the window for each bit. */
Marek Vasut71120772015-07-13 02:38:15 +02003016 search_left_edge(1, rank_bgn, write_group, 0, test_bgn,
Marek Vasut0c4be192015-07-18 20:34:00 +02003017 &sticky_bit_chk,
Marek Vasut71120772015-07-13 02:38:15 +02003018 left_edge, right_edge, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003019
Marek Vasut3b44f552015-07-21 05:00:42 +02003020 /* Search for the right edge of the window for each bit. */
Marek Vasutc4907892015-07-13 02:11:02 +02003021 ret = search_right_edge(1, rank_bgn, write_group, 0,
3022 start_dqs, 0,
Marek Vasut0c4be192015-07-18 20:34:00 +02003023 &sticky_bit_chk,
Marek Vasutc4907892015-07-13 02:11:02 +02003024 left_edge, right_edge, 0);
3025 if (ret) {
3026 set_failing_group_stage(test_bgn + ret - 1, CAL_STAGE_WRITES,
3027 CAL_SUBSTAGE_WRITES_CENTER);
Marek Vasutd043ee52015-07-21 05:32:49 +02003028 return -EINVAL;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003029 }
3030
Marek Vasutafb3eb82015-07-18 19:18:06 +02003031 min_index = get_window_mid_index(1, left_edge, right_edge, &mid_min);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003032
Marek Vasut3b44f552015-07-21 05:00:42 +02003033 /* Determine the amount we can change DQS (which is -mid_min). */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003034 orig_mid_min = mid_min;
3035 new_dqs = start_dqs;
3036 mid_min = 0;
Marek Vasut3b44f552015-07-21 05:00:42 +02003037 debug_cond(DLEVEL == 1,
3038 "%s:%d write_center: start_dqs=%d new_dqs=%d mid_min=%d\n",
3039 __func__, __LINE__, start_dqs, new_dqs, mid_min);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003040
Marek Vasutffb8b662015-07-18 19:46:26 +02003041 /* Add delay to bring centre of all DQ windows to the same "level". */
3042 center_dq_windows(1, left_edge, right_edge, mid_min, orig_mid_min,
3043 min_index, 0, &dq_margin, &dqs_margin);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003044
3045 /* Move DQS */
3046 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group, new_dqs);
Marek Vasut1273dd92015-07-12 21:05:08 +02003047 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003048
3049 /* Centre DM */
3050 debug_cond(DLEVEL == 2, "%s:%d write_center: DM\n", __func__, __LINE__);
3051
3052 /*
Marek Vasut3b44f552015-07-21 05:00:42 +02003053 * Set the left and right edge of each bit to an illegal value.
3054 * Use (IO_IO_OUT1_DELAY_MAX + 1) as an illegal value.
Dinh Nguyen3da42852015-06-02 22:52:49 -05003055 */
3056 left_edge[0] = IO_IO_OUT1_DELAY_MAX + 1;
3057 right_edge[0] = IO_IO_OUT1_DELAY_MAX + 1;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003058
Marek Vasut3b44f552015-07-21 05:00:42 +02003059 /* Search for the/part of the window with DM shift. */
Marek Vasutc8570af2015-07-21 05:26:58 +02003060 search_window(1, rank_bgn, write_group, &bgn_curr, &end_curr,
3061 &bgn_best, &end_best, &win_best, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003062
Marek Vasut3b44f552015-07-21 05:00:42 +02003063 /* Reset DM delay chains to 0. */
Marek Vasut32675242015-07-17 06:07:13 +02003064 scc_mgr_apply_group_dm_out1_delay(0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003065
3066 /*
3067 * Check to see if the current window nudges up aganist 0 delay.
3068 * If so we need to continue the search by shifting DQS otherwise DQS
Marek Vasut3b44f552015-07-21 05:00:42 +02003069 * search begins as a new search.
3070 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003071 if (end_curr != 0) {
3072 bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
3073 end_curr = IO_IO_OUT1_DELAY_MAX + 1;
3074 }
3075
Marek Vasut3b44f552015-07-21 05:00:42 +02003076 /* Search for the/part of the window with DQS shifts. */
Marek Vasutc8570af2015-07-21 05:26:58 +02003077 search_window(0, rank_bgn, write_group, &bgn_curr, &end_curr,
3078 &bgn_best, &end_best, &win_best, new_dqs);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003079
Marek Vasut3b44f552015-07-21 05:00:42 +02003080 /* Assign left and right edge for cal and reporting. */
3081 left_edge[0] = -1 * bgn_best;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003082 right_edge[0] = end_best;
3083
Marek Vasut3b44f552015-07-21 05:00:42 +02003084 debug_cond(DLEVEL == 2, "%s:%d dm_calib: left=%d right=%d\n",
3085 __func__, __LINE__, left_edge[0], right_edge[0]);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003086
Marek Vasut3b44f552015-07-21 05:00:42 +02003087 /* Move DQS (back to orig). */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003088 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group, new_dqs);
3089
3090 /* Move DM */
3091
Marek Vasut3b44f552015-07-21 05:00:42 +02003092 /* Find middle of window for the DM bit. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003093 mid = (left_edge[0] - right_edge[0]) / 2;
3094
Marek Vasut3b44f552015-07-21 05:00:42 +02003095 /* Only move right, since we are not moving DQS/DQ. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003096 if (mid < 0)
3097 mid = 0;
3098
Marek Vasut3b44f552015-07-21 05:00:42 +02003099 /* dm_marign should fail if we never find a window. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003100 if (win_best == 0)
3101 dm_margin = -1;
3102 else
3103 dm_margin = left_edge[0] - mid;
3104
Marek Vasut32675242015-07-17 06:07:13 +02003105 scc_mgr_apply_group_dm_out1_delay(mid);
Marek Vasut1273dd92015-07-12 21:05:08 +02003106 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003107
Marek Vasut3b44f552015-07-21 05:00:42 +02003108 debug_cond(DLEVEL == 2,
3109 "%s:%d dm_calib: left=%d right=%d mid=%d dm_margin=%d\n",
3110 __func__, __LINE__, left_edge[0], right_edge[0],
3111 mid, dm_margin);
3112 /* Export values. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003113 gbl->fom_out += dq_margin + dqs_margin;
3114
Marek Vasut3b44f552015-07-21 05:00:42 +02003115 debug_cond(DLEVEL == 2,
3116 "%s:%d write_center: dq_margin=%d dqs_margin=%d dm_margin=%d\n",
3117 __func__, __LINE__, dq_margin, dqs_margin, dm_margin);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003118
3119 /*
3120 * Do not remove this line as it makes sure all of our
3121 * decisions have been applied.
3122 */
Marek Vasut1273dd92015-07-12 21:05:08 +02003123 writel(0, &sdr_scc_mgr->update);
Marek Vasut3b44f552015-07-21 05:00:42 +02003124
Marek Vasutd043ee52015-07-21 05:32:49 +02003125 if ((dq_margin < 0) || (dqs_margin < 0) || (dm_margin < 0))
3126 return -EINVAL;
3127
3128 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003129}
3130
Marek Vasutdb3a6062015-07-18 07:23:25 +02003131/**
3132 * rw_mgr_mem_calibrate_writes() - Write Calibration Part One
3133 * @rank_bgn: Rank number
3134 * @group: Read/Write Group
3135 * @test_bgn: Rank at which the test begins
3136 *
3137 * Stage 2: Write Calibration Part One.
3138 *
3139 * This function implements UniPHY calibration Stage 2, as explained in
3140 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
3141 */
3142static int rw_mgr_mem_calibrate_writes(const u32 rank_bgn, const u32 group,
3143 const u32 test_bgn)
Dinh Nguyen3da42852015-06-02 22:52:49 -05003144{
Marek Vasutdb3a6062015-07-18 07:23:25 +02003145 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003146
Marek Vasutdb3a6062015-07-18 07:23:25 +02003147 /* Update info for sims */
3148 debug("%s:%d %u %u\n", __func__, __LINE__, group, test_bgn);
3149
3150 reg_file_set_group(group);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003151 reg_file_set_stage(CAL_STAGE_WRITES);
3152 reg_file_set_sub_stage(CAL_SUBSTAGE_WRITES_CENTER);
3153
Marek Vasutdb3a6062015-07-18 07:23:25 +02003154 ret = rw_mgr_mem_calibrate_writes_center(rank_bgn, group, test_bgn);
Marek Vasutd043ee52015-07-21 05:32:49 +02003155 if (ret)
Marek Vasutdb3a6062015-07-18 07:23:25 +02003156 set_failing_group_stage(group, CAL_STAGE_WRITES,
Dinh Nguyen3da42852015-06-02 22:52:49 -05003157 CAL_SUBSTAGE_WRITES_CENTER);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003158
Marek Vasutd043ee52015-07-21 05:32:49 +02003159 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003160}
3161
Marek Vasut4b0ac262015-07-20 07:33:33 +02003162/**
3163 * mem_precharge_and_activate() - Precharge all banks and activate
3164 *
3165 * Precharge all banks and activate row 0 in bank "000..." and bank "111...".
3166 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003167static void mem_precharge_and_activate(void)
3168{
Marek Vasut4b0ac262015-07-20 07:33:33 +02003169 int r;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003170
3171 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS; r++) {
Marek Vasut4b0ac262015-07-20 07:33:33 +02003172 /* Test if the rank should be skipped. */
3173 if (param->skip_ranks[r])
Dinh Nguyen3da42852015-06-02 22:52:49 -05003174 continue;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003175
Marek Vasut4b0ac262015-07-20 07:33:33 +02003176 /* Set rank. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003177 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_OFF);
3178
Marek Vasut4b0ac262015-07-20 07:33:33 +02003179 /* Precharge all banks. */
Marek Vasut1273dd92015-07-12 21:05:08 +02003180 writel(RW_MGR_PRECHARGE_ALL, SDR_PHYGRP_RWMGRGRP_ADDRESS |
3181 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003182
Marek Vasut1273dd92015-07-12 21:05:08 +02003183 writel(0x0F, &sdr_rw_load_mgr_regs->load_cntr0);
3184 writel(RW_MGR_ACTIVATE_0_AND_1_WAIT1,
3185 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003186
Marek Vasut1273dd92015-07-12 21:05:08 +02003187 writel(0x0F, &sdr_rw_load_mgr_regs->load_cntr1);
3188 writel(RW_MGR_ACTIVATE_0_AND_1_WAIT2,
3189 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003190
Marek Vasut4b0ac262015-07-20 07:33:33 +02003191 /* Activate rows. */
Marek Vasut1273dd92015-07-12 21:05:08 +02003192 writel(RW_MGR_ACTIVATE_0_AND_1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
3193 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003194 }
3195}
3196
Marek Vasut16502a02015-07-17 01:57:41 +02003197/**
3198 * mem_init_latency() - Configure memory RLAT and WLAT settings
3199 *
3200 * Configure memory RLAT and WLAT parameters.
3201 */
3202static void mem_init_latency(void)
Dinh Nguyen3da42852015-06-02 22:52:49 -05003203{
Marek Vasut16502a02015-07-17 01:57:41 +02003204 /*
3205 * For AV/CV, LFIFO is hardened and always runs at full rate
3206 * so max latency in AFI clocks, used here, is correspondingly
3207 * smaller.
3208 */
3209 const u32 max_latency = (1 << MAX_LATENCY_COUNT_WIDTH) - 1;
3210 u32 rlat, wlat;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003211
3212 debug("%s:%d\n", __func__, __LINE__);
Marek Vasut16502a02015-07-17 01:57:41 +02003213
3214 /*
3215 * Read in write latency.
3216 * WL for Hard PHY does not include additive latency.
3217 */
Marek Vasut1273dd92015-07-12 21:05:08 +02003218 wlat = readl(&data_mgr->t_wl_add);
3219 wlat += readl(&data_mgr->mem_t_add);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003220
Marek Vasut16502a02015-07-17 01:57:41 +02003221 gbl->rw_wl_nop_cycles = wlat - 1;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003222
Marek Vasut16502a02015-07-17 01:57:41 +02003223 /* Read in readl latency. */
Marek Vasut1273dd92015-07-12 21:05:08 +02003224 rlat = readl(&data_mgr->t_rl_add);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003225
Marek Vasut16502a02015-07-17 01:57:41 +02003226 /* Set a pretty high read latency initially. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003227 gbl->curr_read_lat = rlat + 16;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003228 if (gbl->curr_read_lat > max_latency)
3229 gbl->curr_read_lat = max_latency;
3230
Marek Vasut1273dd92015-07-12 21:05:08 +02003231 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003232
Marek Vasut16502a02015-07-17 01:57:41 +02003233 /* Advertise write latency. */
3234 writel(wlat, &phy_mgr_cfg->afi_wlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003235}
3236
Marek Vasut51cea0b2015-07-26 10:54:15 +02003237/**
3238 * @mem_skip_calibrate() - Set VFIFO and LFIFO to instant-on settings
3239 *
3240 * Set VFIFO and LFIFO to instant-on settings in skip calibration mode.
3241 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003242static void mem_skip_calibrate(void)
3243{
3244 uint32_t vfifo_offset;
3245 uint32_t i, j, r;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003246
3247 debug("%s:%d\n", __func__, __LINE__);
3248 /* Need to update every shadow register set used by the interface */
3249 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
Marek Vasut51cea0b2015-07-26 10:54:15 +02003250 r += NUM_RANKS_PER_SHADOW_REG) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05003251 /*
3252 * Set output phase alignment settings appropriate for
3253 * skip calibration.
3254 */
3255 for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
3256 scc_mgr_set_dqs_en_phase(i, 0);
3257#if IO_DLL_CHAIN_LENGTH == 6
3258 scc_mgr_set_dqdqs_output_phase(i, 6);
3259#else
3260 scc_mgr_set_dqdqs_output_phase(i, 7);
3261#endif
3262 /*
3263 * Case:33398
3264 *
3265 * Write data arrives to the I/O two cycles before write
3266 * latency is reached (720 deg).
3267 * -> due to bit-slip in a/c bus
3268 * -> to allow board skew where dqs is longer than ck
3269 * -> how often can this happen!?
3270 * -> can claim back some ptaps for high freq
3271 * support if we can relax this, but i digress...
3272 *
3273 * The write_clk leads mem_ck by 90 deg
3274 * The minimum ptap of the OPA is 180 deg
3275 * Each ptap has (360 / IO_DLL_CHAIN_LENGH) deg of delay
3276 * The write_clk is always delayed by 2 ptaps
3277 *
3278 * Hence, to make DQS aligned to CK, we need to delay
3279 * DQS by:
3280 * (720 - 90 - 180 - 2 * (360 / IO_DLL_CHAIN_LENGTH))
3281 *
3282 * Dividing the above by (360 / IO_DLL_CHAIN_LENGTH)
3283 * gives us the number of ptaps, which simplies to:
3284 *
3285 * (1.25 * IO_DLL_CHAIN_LENGTH - 2)
3286 */
Marek Vasut51cea0b2015-07-26 10:54:15 +02003287 scc_mgr_set_dqdqs_output_phase(i,
3288 1.25 * IO_DLL_CHAIN_LENGTH - 2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003289 }
Marek Vasut1273dd92015-07-12 21:05:08 +02003290 writel(0xff, &sdr_scc_mgr->dqs_ena);
3291 writel(0xff, &sdr_scc_mgr->dqs_io_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003292
Dinh Nguyen3da42852015-06-02 22:52:49 -05003293 for (i = 0; i < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; i++) {
Marek Vasut1273dd92015-07-12 21:05:08 +02003294 writel(i, SDR_PHYGRP_SCCGRP_ADDRESS |
3295 SCC_MGR_GROUP_COUNTER_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003296 }
Marek Vasut1273dd92015-07-12 21:05:08 +02003297 writel(0xff, &sdr_scc_mgr->dq_ena);
3298 writel(0xff, &sdr_scc_mgr->dm_ena);
3299 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003300 }
3301
3302 /* Compensate for simulation model behaviour */
3303 for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
3304 scc_mgr_set_dqs_bus_in_delay(i, 10);
3305 scc_mgr_load_dqs(i);
3306 }
Marek Vasut1273dd92015-07-12 21:05:08 +02003307 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003308
3309 /*
3310 * ArriaV has hard FIFOs that can only be initialized by incrementing
3311 * in sequencer.
3312 */
3313 vfifo_offset = CALIB_VFIFO_OFFSET;
Marek Vasut51cea0b2015-07-26 10:54:15 +02003314 for (j = 0; j < vfifo_offset; j++)
Marek Vasut1273dd92015-07-12 21:05:08 +02003315 writel(0xff, &phy_mgr_cmd->inc_vfifo_hard_phy);
Marek Vasut1273dd92015-07-12 21:05:08 +02003316 writel(0, &phy_mgr_cmd->fifo_reset);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003317
3318 /*
Marek Vasut51cea0b2015-07-26 10:54:15 +02003319 * For Arria V and Cyclone V with hard LFIFO, we get the skip-cal
3320 * setting from generation-time constant.
Dinh Nguyen3da42852015-06-02 22:52:49 -05003321 */
3322 gbl->curr_read_lat = CALIB_LFIFO_OFFSET;
Marek Vasut1273dd92015-07-12 21:05:08 +02003323 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003324}
3325
Marek Vasut3589fbf2015-07-20 04:34:51 +02003326/**
3327 * mem_calibrate() - Memory calibration entry point.
3328 *
3329 * Perform memory calibration.
3330 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003331static uint32_t mem_calibrate(void)
3332{
3333 uint32_t i;
3334 uint32_t rank_bgn, sr;
3335 uint32_t write_group, write_test_bgn;
3336 uint32_t read_group, read_test_bgn;
3337 uint32_t run_groups, current_run;
3338 uint32_t failing_groups = 0;
3339 uint32_t group_failed = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003340
Marek Vasut33c42bb2015-07-17 02:21:47 +02003341 const u32 rwdqs_ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
3342 RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
3343
Dinh Nguyen3da42852015-06-02 22:52:49 -05003344 debug("%s:%d\n", __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003345
Marek Vasut16502a02015-07-17 01:57:41 +02003346 /* Initialize the data settings */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003347 gbl->error_substage = CAL_SUBSTAGE_NIL;
3348 gbl->error_stage = CAL_STAGE_NIL;
3349 gbl->error_group = 0xff;
3350 gbl->fom_in = 0;
3351 gbl->fom_out = 0;
3352
Marek Vasut16502a02015-07-17 01:57:41 +02003353 /* Initialize WLAT and RLAT. */
3354 mem_init_latency();
3355
3356 /* Initialize bit slips. */
3357 mem_precharge_and_activate();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003358
Dinh Nguyen3da42852015-06-02 22:52:49 -05003359 for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
Marek Vasut1273dd92015-07-12 21:05:08 +02003360 writel(i, SDR_PHYGRP_SCCGRP_ADDRESS |
3361 SCC_MGR_GROUP_COUNTER_OFFSET);
Marek Vasutfa5d8212015-07-19 01:34:43 +02003362 /* Only needed once to set all groups, pins, DQ, DQS, DM. */
3363 if (i == 0)
3364 scc_mgr_set_hhp_extras();
3365
Marek Vasutc5c5f532015-07-17 02:06:20 +02003366 scc_set_bypass_mode(i);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003367 }
3368
Marek Vasut722c9682015-07-17 02:07:12 +02003369 /* Calibration is skipped. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003370 if ((dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL) {
3371 /*
3372 * Set VFIFO and LFIFO to instant-on settings in skip
3373 * calibration mode.
3374 */
3375 mem_skip_calibrate();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003376
Marek Vasut722c9682015-07-17 02:07:12 +02003377 /*
3378 * Do not remove this line as it makes sure all of our
3379 * decisions have been applied.
3380 */
3381 writel(0, &sdr_scc_mgr->update);
3382 return 1;
3383 }
Dinh Nguyen3da42852015-06-02 22:52:49 -05003384
Marek Vasut722c9682015-07-17 02:07:12 +02003385 /* Calibration is not skipped. */
3386 for (i = 0; i < NUM_CALIB_REPEAT; i++) {
3387 /*
3388 * Zero all delay chain/phase settings for all
3389 * groups and all shadow register sets.
3390 */
3391 scc_mgr_zero_all();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003392
Marek Vasut722c9682015-07-17 02:07:12 +02003393 run_groups = ~param->skip_groups;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003394
Marek Vasut722c9682015-07-17 02:07:12 +02003395 for (write_group = 0, write_test_bgn = 0; write_group
3396 < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; write_group++,
3397 write_test_bgn += RW_MGR_MEM_DQ_PER_WRITE_DQS) {
Marek Vasutc452dcd2015-07-17 02:50:56 +02003398
3399 /* Initialize the group failure */
Marek Vasut722c9682015-07-17 02:07:12 +02003400 group_failed = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003401
Marek Vasut722c9682015-07-17 02:07:12 +02003402 current_run = run_groups & ((1 <<
3403 RW_MGR_NUM_DQS_PER_WRITE_GROUP) - 1);
3404 run_groups = run_groups >>
3405 RW_MGR_NUM_DQS_PER_WRITE_GROUP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003406
Marek Vasut722c9682015-07-17 02:07:12 +02003407 if (current_run == 0)
3408 continue;
3409
3410 writel(write_group, SDR_PHYGRP_SCCGRP_ADDRESS |
3411 SCC_MGR_GROUP_COUNTER_OFFSET);
3412 scc_mgr_zero_group(write_group, 0);
3413
Marek Vasut33c42bb2015-07-17 02:21:47 +02003414 for (read_group = write_group * rwdqs_ratio,
3415 read_test_bgn = 0;
Marek Vasutc452dcd2015-07-17 02:50:56 +02003416 read_group < (write_group + 1) * rwdqs_ratio;
Marek Vasut33c42bb2015-07-17 02:21:47 +02003417 read_group++,
3418 read_test_bgn += RW_MGR_MEM_DQ_PER_READ_DQS) {
3419 if (STATIC_CALIB_STEPS & CALIB_SKIP_VFIFO)
3420 continue;
Marek Vasut722c9682015-07-17 02:07:12 +02003421
Marek Vasut33c42bb2015-07-17 02:21:47 +02003422 /* Calibrate the VFIFO */
3423 if (rw_mgr_mem_calibrate_vfifo(read_group,
3424 read_test_bgn))
3425 continue;
3426
Marek Vasutc452dcd2015-07-17 02:50:56 +02003427 if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
3428 return 0;
3429
3430 /* The group failed, we're done. */
3431 goto grp_failed;
3432 }
3433
3434 /* Calibrate the output side */
3435 for (rank_bgn = 0, sr = 0;
3436 rank_bgn < RW_MGR_MEM_NUMBER_OF_RANKS;
3437 rank_bgn += NUM_RANKS_PER_SHADOW_REG, sr++) {
3438 if (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES)
3439 continue;
3440
3441 /* Not needed in quick mode! */
3442 if (STATIC_CALIB_STEPS & CALIB_SKIP_DELAY_SWEEPS)
3443 continue;
3444
3445 /*
3446 * Determine if this set of ranks
3447 * should be skipped entirely.
3448 */
3449 if (param->skip_shadow_regs[sr])
3450 continue;
3451
3452 /* Calibrate WRITEs */
Marek Vasutdb3a6062015-07-18 07:23:25 +02003453 if (!rw_mgr_mem_calibrate_writes(rank_bgn,
Marek Vasutc452dcd2015-07-17 02:50:56 +02003454 write_group, write_test_bgn))
3455 continue;
3456
Marek Vasut33c42bb2015-07-17 02:21:47 +02003457 group_failed = 1;
3458 if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
3459 return 0;
Marek Vasut722c9682015-07-17 02:07:12 +02003460 }
3461
Marek Vasutc452dcd2015-07-17 02:50:56 +02003462 /* Some group failed, we're done. */
3463 if (group_failed)
3464 goto grp_failed;
Marek Vasut4ac21612015-07-17 02:31:04 +02003465
Marek Vasutc452dcd2015-07-17 02:50:56 +02003466 for (read_group = write_group * rwdqs_ratio,
3467 read_test_bgn = 0;
3468 read_group < (write_group + 1) * rwdqs_ratio;
3469 read_group++,
3470 read_test_bgn += RW_MGR_MEM_DQ_PER_READ_DQS) {
3471 if (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES)
3472 continue;
Marek Vasut4ac21612015-07-17 02:31:04 +02003473
Marek Vasutc452dcd2015-07-17 02:50:56 +02003474 if (rw_mgr_mem_calibrate_vfifo_end(read_group,
3475 read_test_bgn))
3476 continue;
Marek Vasut4ac21612015-07-17 02:31:04 +02003477
Marek Vasutc452dcd2015-07-17 02:50:56 +02003478 if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
3479 return 0;
Marek Vasut4ac21612015-07-17 02:31:04 +02003480
Marek Vasutc452dcd2015-07-17 02:50:56 +02003481 /* The group failed, we're done. */
3482 goto grp_failed;
Marek Vasut722c9682015-07-17 02:07:12 +02003483 }
3484
Marek Vasutc452dcd2015-07-17 02:50:56 +02003485 /* No group failed, continue as usual. */
3486 continue;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003487
Marek Vasutc452dcd2015-07-17 02:50:56 +02003488grp_failed: /* A group failed, increment the counter. */
3489 failing_groups++;
Marek Vasut722c9682015-07-17 02:07:12 +02003490 }
Dinh Nguyen3da42852015-06-02 22:52:49 -05003491
Marek Vasut722c9682015-07-17 02:07:12 +02003492 /*
3493 * USER If there are any failing groups then report
3494 * the failure.
3495 */
3496 if (failing_groups != 0)
3497 return 0;
3498
Marek Vasutc50ae302015-07-17 02:40:21 +02003499 if (STATIC_CALIB_STEPS & CALIB_SKIP_LFIFO)
3500 continue;
3501
3502 /*
3503 * If we're skipping groups as part of debug,
3504 * don't calibrate LFIFO.
3505 */
3506 if (param->skip_groups != 0)
3507 continue;
3508
Marek Vasut722c9682015-07-17 02:07:12 +02003509 /* Calibrate the LFIFO */
Marek Vasutc50ae302015-07-17 02:40:21 +02003510 if (!rw_mgr_mem_calibrate_lfifo())
3511 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003512 }
3513
3514 /*
3515 * Do not remove this line as it makes sure all of our decisions
3516 * have been applied.
3517 */
Marek Vasut1273dd92015-07-12 21:05:08 +02003518 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003519 return 1;
3520}
3521
Marek Vasut23a040c2015-07-17 01:20:21 +02003522/**
3523 * run_mem_calibrate() - Perform memory calibration
3524 *
3525 * This function triggers the entire memory calibration procedure.
3526 */
3527static int run_mem_calibrate(void)
Dinh Nguyen3da42852015-06-02 22:52:49 -05003528{
Marek Vasut23a040c2015-07-17 01:20:21 +02003529 int pass;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003530
3531 debug("%s:%d\n", __func__, __LINE__);
3532
3533 /* Reset pass/fail status shown on afi_cal_success/fail */
Marek Vasut1273dd92015-07-12 21:05:08 +02003534 writel(PHY_MGR_CAL_RESET, &phy_mgr_cfg->cal_status);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003535
Marek Vasut23a040c2015-07-17 01:20:21 +02003536 /* Stop tracking manager. */
3537 clrbits_le32(&sdr_ctrl->ctrl_cfg, 1 << 22);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003538
Marek Vasut9fa9c902015-07-17 01:12:07 +02003539 phy_mgr_initialize();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003540 rw_mgr_mem_initialize();
3541
Marek Vasut23a040c2015-07-17 01:20:21 +02003542 /* Perform the actual memory calibration. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003543 pass = mem_calibrate();
3544
3545 mem_precharge_and_activate();
Marek Vasut1273dd92015-07-12 21:05:08 +02003546 writel(0, &phy_mgr_cmd->fifo_reset);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003547
Marek Vasut23a040c2015-07-17 01:20:21 +02003548 /* Handoff. */
3549 rw_mgr_mem_handoff();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003550 /*
Marek Vasut23a040c2015-07-17 01:20:21 +02003551 * In Hard PHY this is a 2-bit control:
3552 * 0: AFI Mux Select
3553 * 1: DDIO Mux Select
Dinh Nguyen3da42852015-06-02 22:52:49 -05003554 */
Marek Vasut23a040c2015-07-17 01:20:21 +02003555 writel(0x2, &phy_mgr_cfg->mux_sel);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003556
Marek Vasut23a040c2015-07-17 01:20:21 +02003557 /* Start tracking manager. */
3558 setbits_le32(&sdr_ctrl->ctrl_cfg, 1 << 22);
3559
3560 return pass;
3561}
3562
3563/**
3564 * debug_mem_calibrate() - Report result of memory calibration
3565 * @pass: Value indicating whether calibration passed or failed
3566 *
3567 * This function reports the results of the memory calibration
3568 * and writes debug information into the register file.
3569 */
3570static void debug_mem_calibrate(int pass)
3571{
3572 uint32_t debug_info;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003573
3574 if (pass) {
3575 printf("%s: CALIBRATION PASSED\n", __FILE__);
3576
3577 gbl->fom_in /= 2;
3578 gbl->fom_out /= 2;
3579
3580 if (gbl->fom_in > 0xff)
3581 gbl->fom_in = 0xff;
3582
3583 if (gbl->fom_out > 0xff)
3584 gbl->fom_out = 0xff;
3585
3586 /* Update the FOM in the register file */
3587 debug_info = gbl->fom_in;
3588 debug_info |= gbl->fom_out << 8;
Marek Vasut1273dd92015-07-12 21:05:08 +02003589 writel(debug_info, &sdr_reg_file->fom);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003590
Marek Vasut1273dd92015-07-12 21:05:08 +02003591 writel(debug_info, &phy_mgr_cfg->cal_debug_info);
3592 writel(PHY_MGR_CAL_SUCCESS, &phy_mgr_cfg->cal_status);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003593 } else {
3594 printf("%s: CALIBRATION FAILED\n", __FILE__);
3595
3596 debug_info = gbl->error_stage;
3597 debug_info |= gbl->error_substage << 8;
3598 debug_info |= gbl->error_group << 16;
3599
Marek Vasut1273dd92015-07-12 21:05:08 +02003600 writel(debug_info, &sdr_reg_file->failing_stage);
3601 writel(debug_info, &phy_mgr_cfg->cal_debug_info);
3602 writel(PHY_MGR_CAL_FAIL, &phy_mgr_cfg->cal_status);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003603
3604 /* Update the failing group/stage in the register file */
3605 debug_info = gbl->error_stage;
3606 debug_info |= gbl->error_substage << 8;
3607 debug_info |= gbl->error_group << 16;
Marek Vasut1273dd92015-07-12 21:05:08 +02003608 writel(debug_info, &sdr_reg_file->failing_stage);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003609 }
3610
Marek Vasut23a040c2015-07-17 01:20:21 +02003611 printf("%s: Calibration complete\n", __FILE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003612}
3613
Marek Vasutbb064342015-07-19 06:12:42 +02003614/**
3615 * hc_initialize_rom_data() - Initialize ROM data
3616 *
3617 * Initialize ROM data.
3618 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003619static void hc_initialize_rom_data(void)
3620{
Marek Vasutbb064342015-07-19 06:12:42 +02003621 u32 i, addr;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003622
Marek Vasutc4815f72015-07-12 19:03:33 +02003623 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_INST_ROM_WRITE_OFFSET;
Marek Vasutbb064342015-07-19 06:12:42 +02003624 for (i = 0; i < ARRAY_SIZE(inst_rom_init); i++)
3625 writel(inst_rom_init[i], addr + (i << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05003626
Marek Vasutc4815f72015-07-12 19:03:33 +02003627 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_AC_ROM_WRITE_OFFSET;
Marek Vasutbb064342015-07-19 06:12:42 +02003628 for (i = 0; i < ARRAY_SIZE(ac_rom_init); i++)
3629 writel(ac_rom_init[i], addr + (i << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05003630}
3631
Marek Vasut9c1ab2c2015-07-19 06:13:37 +02003632/**
3633 * initialize_reg_file() - Initialize SDR register file
3634 *
3635 * Initialize SDR register file.
3636 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003637static void initialize_reg_file(void)
3638{
Dinh Nguyen3da42852015-06-02 22:52:49 -05003639 /* Initialize the register file with the correct data */
Marek Vasut1273dd92015-07-12 21:05:08 +02003640 writel(REG_FILE_INIT_SEQ_SIGNATURE, &sdr_reg_file->signature);
3641 writel(0, &sdr_reg_file->debug_data_addr);
3642 writel(0, &sdr_reg_file->cur_stage);
3643 writel(0, &sdr_reg_file->fom);
3644 writel(0, &sdr_reg_file->failing_stage);
3645 writel(0, &sdr_reg_file->debug1);
3646 writel(0, &sdr_reg_file->debug2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003647}
3648
Marek Vasut2ca151f2015-07-19 06:14:04 +02003649/**
3650 * initialize_hps_phy() - Initialize HPS PHY
3651 *
3652 * Initialize HPS PHY.
3653 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003654static void initialize_hps_phy(void)
3655{
3656 uint32_t reg;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003657 /*
3658 * Tracking also gets configured here because it's in the
3659 * same register.
3660 */
3661 uint32_t trk_sample_count = 7500;
3662 uint32_t trk_long_idle_sample_count = (10 << 16) | 100;
3663 /*
3664 * Format is number of outer loops in the 16 MSB, sample
3665 * count in 16 LSB.
3666 */
3667
3668 reg = 0;
3669 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_ACDELAYEN_SET(2);
3670 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQDELAYEN_SET(1);
3671 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQSDELAYEN_SET(1);
3672 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQSLOGICDELAYEN_SET(1);
3673 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_RESETDELAYEN_SET(0);
3674 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_LPDDRDIS_SET(1);
3675 /*
3676 * This field selects the intrinsic latency to RDATA_EN/FULL path.
3677 * 00-bypass, 01- add 5 cycles, 10- add 10 cycles, 11- add 15 cycles.
3678 */
3679 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_ADDLATSEL_SET(0);
3680 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_SAMPLECOUNT_19_0_SET(
3681 trk_sample_count);
Marek Vasut6cb9f162015-07-12 20:49:39 +02003682 writel(reg, &sdr_ctrl->phy_ctrl0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003683
3684 reg = 0;
3685 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_SAMPLECOUNT_31_20_SET(
3686 trk_sample_count >>
3687 SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_SAMPLECOUNT_19_0_WIDTH);
3688 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_LONGIDLESAMPLECOUNT_19_0_SET(
3689 trk_long_idle_sample_count);
Marek Vasut6cb9f162015-07-12 20:49:39 +02003690 writel(reg, &sdr_ctrl->phy_ctrl1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003691
3692 reg = 0;
3693 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_2_LONGIDLESAMPLECOUNT_31_20_SET(
3694 trk_long_idle_sample_count >>
3695 SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_LONGIDLESAMPLECOUNT_19_0_WIDTH);
Marek Vasut6cb9f162015-07-12 20:49:39 +02003696 writel(reg, &sdr_ctrl->phy_ctrl2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003697}
3698
Marek Vasut880e46f2015-07-17 00:45:11 +02003699/**
3700 * initialize_tracking() - Initialize tracking
3701 *
3702 * Initialize the register file with usable initial data.
3703 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003704static void initialize_tracking(void)
3705{
Marek Vasut880e46f2015-07-17 00:45:11 +02003706 /*
3707 * Initialize the register file with the correct data.
3708 * Compute usable version of value in case we skip full
3709 * computation later.
3710 */
3711 writel(DIV_ROUND_UP(IO_DELAY_PER_OPA_TAP, IO_DELAY_PER_DCHAIN_TAP) - 1,
3712 &sdr_reg_file->dtaps_per_ptap);
3713
3714 /* trk_sample_count */
3715 writel(7500, &sdr_reg_file->trk_sample_count);
3716
3717 /* longidle outer loop [15:0] */
3718 writel((10 << 16) | (100 << 0), &sdr_reg_file->trk_longidle);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003719
3720 /*
Marek Vasut880e46f2015-07-17 00:45:11 +02003721 * longidle sample count [31:24]
3722 * trfc, worst case of 933Mhz 4Gb [23:16]
3723 * trcd, worst case [15:8]
3724 * vfifo wait [7:0]
Dinh Nguyen3da42852015-06-02 22:52:49 -05003725 */
Marek Vasut880e46f2015-07-17 00:45:11 +02003726 writel((243 << 24) | (14 << 16) | (10 << 8) | (4 << 0),
3727 &sdr_reg_file->delays);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003728
Marek Vasut880e46f2015-07-17 00:45:11 +02003729 /* mux delay */
3730 writel((RW_MGR_IDLE << 24) | (RW_MGR_ACTIVATE_1 << 16) |
3731 (RW_MGR_SGLE_READ << 8) | (RW_MGR_PRECHARGE_ALL << 0),
3732 &sdr_reg_file->trk_rw_mgr_addr);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003733
Marek Vasut880e46f2015-07-17 00:45:11 +02003734 writel(RW_MGR_MEM_IF_READ_DQS_WIDTH,
3735 &sdr_reg_file->trk_read_dqs_width);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003736
Marek Vasut880e46f2015-07-17 00:45:11 +02003737 /* trefi [7:0] */
3738 writel((RW_MGR_REFRESH_ALL << 24) | (1000 << 0),
3739 &sdr_reg_file->trk_rfsh);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003740}
3741
3742int sdram_calibration_full(void)
3743{
3744 struct param_type my_param;
3745 struct gbl_type my_gbl;
3746 uint32_t pass;
Marek Vasut84e0b0c2015-07-17 01:05:36 +02003747
3748 memset(&my_param, 0, sizeof(my_param));
3749 memset(&my_gbl, 0, sizeof(my_gbl));
Dinh Nguyen3da42852015-06-02 22:52:49 -05003750
3751 param = &my_param;
3752 gbl = &my_gbl;
3753
Dinh Nguyen3da42852015-06-02 22:52:49 -05003754 /* Set the calibration enabled by default */
3755 gbl->phy_debug_mode_flags |= PHY_DEBUG_ENABLE_CAL_RPT;
3756 /*
3757 * Only sweep all groups (regardless of fail state) by default
3758 * Set enabled read test by default.
3759 */
3760#if DISABLE_GUARANTEED_READ
3761 gbl->phy_debug_mode_flags |= PHY_DEBUG_DISABLE_GUARANTEED_READ;
3762#endif
3763 /* Initialize the register file */
3764 initialize_reg_file();
3765
3766 /* Initialize any PHY CSR */
3767 initialize_hps_phy();
3768
3769 scc_mgr_initialize();
3770
3771 initialize_tracking();
3772
Dinh Nguyen3da42852015-06-02 22:52:49 -05003773 printf("%s: Preparing to start memory calibration\n", __FILE__);
3774
3775 debug("%s:%d\n", __func__, __LINE__);
Marek Vasut23f62b32015-07-13 01:05:27 +02003776 debug_cond(DLEVEL == 1,
3777 "DDR3 FULL_RATE ranks=%u cs/dimm=%u dq/dqs=%u,%u vg/dqs=%u,%u ",
3778 RW_MGR_MEM_NUMBER_OF_RANKS, RW_MGR_MEM_NUMBER_OF_CS_PER_DIMM,
3779 RW_MGR_MEM_DQ_PER_READ_DQS, RW_MGR_MEM_DQ_PER_WRITE_DQS,
3780 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS,
3781 RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS);
3782 debug_cond(DLEVEL == 1,
3783 "dqs=%u,%u dq=%u dm=%u ptap_delay=%u dtap_delay=%u ",
3784 RW_MGR_MEM_IF_READ_DQS_WIDTH, RW_MGR_MEM_IF_WRITE_DQS_WIDTH,
3785 RW_MGR_MEM_DATA_WIDTH, RW_MGR_MEM_DATA_MASK_WIDTH,
3786 IO_DELAY_PER_OPA_TAP, IO_DELAY_PER_DCHAIN_TAP);
3787 debug_cond(DLEVEL == 1, "dtap_dqsen_delay=%u, dll=%u",
3788 IO_DELAY_PER_DQS_EN_DCHAIN_TAP, IO_DLL_CHAIN_LENGTH);
3789 debug_cond(DLEVEL == 1, "max values: en_p=%u dqdqs_p=%u en_d=%u dqs_in_d=%u ",
3790 IO_DQS_EN_PHASE_MAX, IO_DQDQS_OUT_PHASE_MAX,
3791 IO_DQS_EN_DELAY_MAX, IO_DQS_IN_DELAY_MAX);
3792 debug_cond(DLEVEL == 1, "io_in_d=%u io_out1_d=%u io_out2_d=%u ",
3793 IO_IO_IN_DELAY_MAX, IO_IO_OUT1_DELAY_MAX,
3794 IO_IO_OUT2_DELAY_MAX);
3795 debug_cond(DLEVEL == 1, "dqs_in_reserve=%u dqs_out_reserve=%u\n",
3796 IO_DQS_IN_RESERVE, IO_DQS_OUT_RESERVE);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003797
3798 hc_initialize_rom_data();
3799
3800 /* update info for sims */
3801 reg_file_set_stage(CAL_STAGE_NIL);
3802 reg_file_set_group(0);
3803
3804 /*
3805 * Load global needed for those actions that require
3806 * some dynamic calibration support.
3807 */
3808 dyn_calib_steps = STATIC_CALIB_STEPS;
3809 /*
3810 * Load global to allow dynamic selection of delay loop settings
3811 * based on calibration mode.
3812 */
3813 if (!(dyn_calib_steps & CALIB_SKIP_DELAY_LOOPS))
3814 skip_delay_mask = 0xff;
3815 else
3816 skip_delay_mask = 0x0;
3817
3818 pass = run_mem_calibrate();
Marek Vasut23a040c2015-07-17 01:20:21 +02003819 debug_mem_calibrate(pass);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003820 return pass;
3821}