blob: 11f96a5790879f235b5d88e75ff8ba7de200f011 [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"
Marek Vasut9c76df52015-08-02 16:55:45 +020012
13/*
14 * FIXME: This path is temporary until the SDRAM driver gets
15 * a proper thorough cleanup.
16 */
17#include "../../../board/altera/socfpga/qts/sequencer_auto.h"
Marek Vasut9c76df52015-08-02 16:55:45 +020018#include "../../../board/altera/socfpga/qts/sequencer_defines.h"
Dinh Nguyen3da42852015-06-02 22:52:49 -050019
Dinh Nguyen3da42852015-06-02 22:52:49 -050020static struct socfpga_sdr_rw_load_manager *sdr_rw_load_mgr_regs =
Marek Vasut6afb4fe2015-07-12 18:46:52 +020021 (struct socfpga_sdr_rw_load_manager *)(SDR_PHYGRP_RWMGRGRP_ADDRESS | 0x800);
Dinh Nguyen3da42852015-06-02 22:52:49 -050022
23static struct socfpga_sdr_rw_load_jump_manager *sdr_rw_load_jump_mgr_regs =
Marek Vasut6afb4fe2015-07-12 18:46:52 +020024 (struct socfpga_sdr_rw_load_jump_manager *)(SDR_PHYGRP_RWMGRGRP_ADDRESS | 0xC00);
Dinh Nguyen3da42852015-06-02 22:52:49 -050025
26static struct socfpga_sdr_reg_file *sdr_reg_file =
Marek Vasuta1c654a2015-07-12 18:31:05 +020027 (struct socfpga_sdr_reg_file *)SDR_PHYGRP_REGFILEGRP_ADDRESS;
Dinh Nguyen3da42852015-06-02 22:52:49 -050028
29static struct socfpga_sdr_scc_mgr *sdr_scc_mgr =
Marek Vasute79025a2015-07-12 18:42:34 +020030 (struct socfpga_sdr_scc_mgr *)(SDR_PHYGRP_SCCGRP_ADDRESS | 0xe00);
Dinh Nguyen3da42852015-06-02 22:52:49 -050031
32static struct socfpga_phy_mgr_cmd *phy_mgr_cmd =
Marek Vasut1bc6f142015-07-12 18:54:37 +020033 (struct socfpga_phy_mgr_cmd *)SDR_PHYGRP_PHYMGRGRP_ADDRESS;
Dinh Nguyen3da42852015-06-02 22:52:49 -050034
35static struct socfpga_phy_mgr_cfg *phy_mgr_cfg =
Marek Vasut1bc6f142015-07-12 18:54:37 +020036 (struct socfpga_phy_mgr_cfg *)(SDR_PHYGRP_PHYMGRGRP_ADDRESS | 0x40);
Dinh Nguyen3da42852015-06-02 22:52:49 -050037
38static struct socfpga_data_mgr *data_mgr =
Marek Vasutc4815f72015-07-12 19:03:33 +020039 (struct socfpga_data_mgr *)SDR_PHYGRP_DATAMGRGRP_ADDRESS;
Dinh Nguyen3da42852015-06-02 22:52:49 -050040
Marek Vasut6cb9f162015-07-12 20:49:39 +020041static struct socfpga_sdr_ctrl *sdr_ctrl =
42 (struct socfpga_sdr_ctrl *)SDR_CTRLGRP_ADDRESS;
43
Marek Vasutd718a262015-08-02 18:12:08 +020044const struct socfpga_sdram_rw_mgr_config *rwcfg;
45
Dinh Nguyen3da42852015-06-02 22:52:49 -050046#define DELTA_D 1
Dinh Nguyen3da42852015-06-02 22:52:49 -050047
48/*
49 * In order to reduce ROM size, most of the selectable calibration steps are
50 * decided at compile time based on the user's calibration mode selection,
51 * as captured by the STATIC_CALIB_STEPS selection below.
52 *
53 * However, to support simulation-time selection of fast simulation mode, where
54 * we skip everything except the bare minimum, we need a few of the steps to
55 * be dynamic. In those cases, we either use the DYNAMIC_CALIB_STEPS for the
56 * check, which is based on the rtl-supplied value, or we dynamically compute
57 * the value to use based on the dynamically-chosen calibration mode
58 */
59
60#define DLEVEL 0
61#define STATIC_IN_RTL_SIM 0
62#define STATIC_SKIP_DELAY_LOOPS 0
63
64#define STATIC_CALIB_STEPS (STATIC_IN_RTL_SIM | CALIB_SKIP_FULL_TEST | \
65 STATIC_SKIP_DELAY_LOOPS)
66
67/* calibration steps requested by the rtl */
68uint16_t dyn_calib_steps;
69
70/*
71 * To make CALIB_SKIP_DELAY_LOOPS a dynamic conditional option
72 * instead of static, we use boolean logic to select between
73 * non-skip and skip values
74 *
75 * The mask is set to include all bits when not-skipping, but is
76 * zero when skipping
77 */
78
79uint16_t skip_delay_mask; /* mask off bits when skipping/not-skipping */
80
81#define SKIP_DELAY_LOOP_VALUE_OR_ZERO(non_skip_value) \
82 ((non_skip_value) & skip_delay_mask)
83
84struct gbl_type *gbl;
85struct param_type *param;
Dinh Nguyen3da42852015-06-02 22:52:49 -050086
Dinh Nguyen3da42852015-06-02 22:52:49 -050087static void set_failing_group_stage(uint32_t group, uint32_t stage,
88 uint32_t substage)
89{
90 /*
91 * Only set the global stage if there was not been any other
92 * failing group
93 */
94 if (gbl->error_stage == CAL_STAGE_NIL) {
95 gbl->error_substage = substage;
96 gbl->error_stage = stage;
97 gbl->error_group = group;
98 }
99}
100
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200101static void reg_file_set_group(u16 set_group)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500102{
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200103 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xffff0000, set_group << 16);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500104}
105
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200106static void reg_file_set_stage(u8 set_stage)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500107{
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200108 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xffff, set_stage & 0xff);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500109}
110
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200111static void reg_file_set_sub_stage(u8 set_sub_stage)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500112{
Marek Vasut2c0d2d92015-07-12 21:10:24 +0200113 set_sub_stage &= 0xff;
114 clrsetbits_le32(&sdr_reg_file->cur_stage, 0xff00, set_sub_stage << 8);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500115}
116
Marek Vasut7c89c2d2015-07-17 01:36:32 +0200117/**
118 * phy_mgr_initialize() - Initialize PHY Manager
119 *
120 * Initialize PHY Manager.
121 */
Marek Vasut9fa9c902015-07-17 01:12:07 +0200122static void phy_mgr_initialize(void)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500123{
Marek Vasut7c89c2d2015-07-17 01:36:32 +0200124 u32 ratio;
125
Dinh Nguyen3da42852015-06-02 22:52:49 -0500126 debug("%s:%d\n", __func__, __LINE__);
Marek Vasut7c89c2d2015-07-17 01:36:32 +0200127 /* Calibration has control over path to memory */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500128 /*
129 * In Hard PHY this is a 2-bit control:
130 * 0: AFI Mux Select
131 * 1: DDIO Mux Select
132 */
Marek Vasut1273dd92015-07-12 21:05:08 +0200133 writel(0x3, &phy_mgr_cfg->mux_sel);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500134
135 /* USER memory clock is not stable we begin initialization */
Marek Vasut1273dd92015-07-12 21:05:08 +0200136 writel(0, &phy_mgr_cfg->reset_mem_stbl);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500137
138 /* USER calibration status all set to zero */
Marek Vasut1273dd92015-07-12 21:05:08 +0200139 writel(0, &phy_mgr_cfg->cal_status);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500140
Marek Vasut1273dd92015-07-12 21:05:08 +0200141 writel(0, &phy_mgr_cfg->cal_debug_info);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500142
Marek Vasut7c89c2d2015-07-17 01:36:32 +0200143 /* Init params only if we do NOT skip calibration. */
144 if ((dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL)
145 return;
146
147 ratio = RW_MGR_MEM_DQ_PER_READ_DQS /
148 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
149 param->read_correct_mask_vg = (1 << ratio) - 1;
150 param->write_correct_mask_vg = (1 << ratio) - 1;
151 param->read_correct_mask = (1 << RW_MGR_MEM_DQ_PER_READ_DQS) - 1;
152 param->write_correct_mask = (1 << RW_MGR_MEM_DQ_PER_WRITE_DQS) - 1;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500153}
154
Marek Vasut080bf642015-07-20 08:15:57 +0200155/**
156 * set_rank_and_odt_mask() - Set Rank and ODT mask
157 * @rank: Rank mask
158 * @odt_mode: ODT mode, OFF or READ_WRITE
159 *
160 * Set Rank and ODT mask (On-Die Termination).
161 */
Marek Vasutb2dfd102015-07-20 08:03:11 +0200162static void set_rank_and_odt_mask(const u32 rank, const u32 odt_mode)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500163{
Marek Vasutb2dfd102015-07-20 08:03:11 +0200164 u32 odt_mask_0 = 0;
165 u32 odt_mask_1 = 0;
166 u32 cs_and_odt_mask;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500167
Marek Vasutb2dfd102015-07-20 08:03:11 +0200168 if (odt_mode == RW_MGR_ODT_MODE_OFF) {
169 odt_mask_0 = 0x0;
170 odt_mask_1 = 0x0;
171 } else { /* RW_MGR_ODT_MODE_READ_WRITE */
Marek Vasut287cdf62015-07-20 08:09:05 +0200172 switch (RW_MGR_MEM_NUMBER_OF_RANKS) {
173 case 1: /* 1 Rank */
174 /* Read: ODT = 0 ; Write: ODT = 1 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500175 odt_mask_0 = 0x0;
176 odt_mask_1 = 0x1;
Marek Vasut287cdf62015-07-20 08:09:05 +0200177 break;
178 case 2: /* 2 Ranks */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500179 if (RW_MGR_MEM_NUMBER_OF_CS_PER_DIMM == 1) {
Marek Vasut080bf642015-07-20 08:15:57 +0200180 /*
181 * - Dual-Slot , Single-Rank (1 CS per DIMM)
182 * OR
183 * - RDIMM, 4 total CS (2 CS per DIMM, 2 DIMM)
184 *
185 * Since MEM_NUMBER_OF_RANKS is 2, they
186 * are both single rank with 2 CS each
187 * (special for RDIMM).
188 *
Dinh Nguyen3da42852015-06-02 22:52:49 -0500189 * Read: Turn on ODT on the opposite rank
190 * Write: Turn on ODT on all ranks
191 */
192 odt_mask_0 = 0x3 & ~(1 << rank);
193 odt_mask_1 = 0x3;
194 } else {
195 /*
Marek Vasut080bf642015-07-20 08:15:57 +0200196 * - Single-Slot , Dual-Rank (2 CS per DIMM)
197 *
198 * Read: Turn on ODT off on all ranks
199 * Write: Turn on ODT on active rank
Dinh Nguyen3da42852015-06-02 22:52:49 -0500200 */
201 odt_mask_0 = 0x0;
202 odt_mask_1 = 0x3 & (1 << rank);
203 }
Marek Vasut287cdf62015-07-20 08:09:05 +0200204 break;
205 case 4: /* 4 Ranks */
206 /* Read:
Dinh Nguyen3da42852015-06-02 22:52:49 -0500207 * ----------+-----------------------+
Dinh Nguyen3da42852015-06-02 22:52:49 -0500208 * | ODT |
209 * Read From +-----------------------+
210 * Rank | 3 | 2 | 1 | 0 |
211 * ----------+-----+-----+-----+-----+
212 * 0 | 0 | 1 | 0 | 0 |
213 * 1 | 1 | 0 | 0 | 0 |
214 * 2 | 0 | 0 | 0 | 1 |
215 * 3 | 0 | 0 | 1 | 0 |
216 * ----------+-----+-----+-----+-----+
217 *
218 * Write:
219 * ----------+-----------------------+
Dinh Nguyen3da42852015-06-02 22:52:49 -0500220 * | ODT |
221 * Write To +-----------------------+
222 * Rank | 3 | 2 | 1 | 0 |
223 * ----------+-----+-----+-----+-----+
224 * 0 | 0 | 1 | 0 | 1 |
225 * 1 | 1 | 0 | 1 | 0 |
226 * 2 | 0 | 1 | 0 | 1 |
227 * 3 | 1 | 0 | 1 | 0 |
228 * ----------+-----+-----+-----+-----+
229 */
230 switch (rank) {
231 case 0:
232 odt_mask_0 = 0x4;
233 odt_mask_1 = 0x5;
234 break;
235 case 1:
236 odt_mask_0 = 0x8;
237 odt_mask_1 = 0xA;
238 break;
239 case 2:
240 odt_mask_0 = 0x1;
241 odt_mask_1 = 0x5;
242 break;
243 case 3:
244 odt_mask_0 = 0x2;
245 odt_mask_1 = 0xA;
246 break;
247 }
Marek Vasut287cdf62015-07-20 08:09:05 +0200248 break;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500249 }
Dinh Nguyen3da42852015-06-02 22:52:49 -0500250 }
251
Marek Vasutb2dfd102015-07-20 08:03:11 +0200252 cs_and_odt_mask = (0xFF & ~(1 << rank)) |
253 ((0xFF & odt_mask_0) << 8) |
254 ((0xFF & odt_mask_1) << 16);
Marek Vasut1273dd92015-07-12 21:05:08 +0200255 writel(cs_and_odt_mask, SDR_PHYGRP_RWMGRGRP_ADDRESS |
256 RW_MGR_SET_CS_AND_ODT_MASK_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500257}
258
Marek Vasutc76976d2015-07-12 22:28:33 +0200259/**
260 * scc_mgr_set() - Set SCC Manager register
261 * @off: Base offset in SCC Manager space
262 * @grp: Read/Write group
263 * @val: Value to be set
264 *
265 * This function sets the SCC Manager (Scan Chain Control Manager) register.
266 */
267static void scc_mgr_set(u32 off, u32 grp, u32 val)
268{
269 writel(val, SDR_PHYGRP_SCCGRP_ADDRESS | off | (grp << 2));
270}
271
Marek Vasute893f4d2015-07-20 07:16:42 +0200272/**
273 * scc_mgr_initialize() - Initialize SCC Manager registers
274 *
275 * Initialize SCC Manager registers.
276 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500277static void scc_mgr_initialize(void)
278{
Dinh Nguyen3da42852015-06-02 22:52:49 -0500279 /*
Marek Vasute893f4d2015-07-20 07:16:42 +0200280 * Clear register file for HPS. 16 (2^4) is the size of the
281 * full register file in the scc mgr:
282 * RFILE_DEPTH = 1 + log2(MEM_DQ_PER_DQS + 1 + MEM_DM_PER_DQS +
283 * MEM_IF_READ_DQS_WIDTH - 1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500284 */
Marek Vasutc76976d2015-07-12 22:28:33 +0200285 int i;
Marek Vasute893f4d2015-07-20 07:16:42 +0200286
Dinh Nguyen3da42852015-06-02 22:52:49 -0500287 for (i = 0; i < 16; i++) {
Marek Vasut7ac40d22015-06-26 18:56:54 +0200288 debug_cond(DLEVEL == 1, "%s:%d: Clearing SCC RFILE index %u\n",
Dinh Nguyen3da42852015-06-02 22:52:49 -0500289 __func__, __LINE__, i);
Marek Vasutc76976d2015-07-12 22:28:33 +0200290 scc_mgr_set(SCC_MGR_HHP_RFILE_OFFSET, 0, i);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500291 }
292}
293
Marek Vasut5ff825b2015-07-12 22:11:55 +0200294static void scc_mgr_set_dqdqs_output_phase(uint32_t write_group, uint32_t phase)
295{
Marek Vasutc76976d2015-07-12 22:28:33 +0200296 scc_mgr_set(SCC_MGR_DQDQS_OUT_PHASE_OFFSET, write_group, phase);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200297}
298
299static void scc_mgr_set_dqs_bus_in_delay(uint32_t read_group, uint32_t delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500300{
Marek Vasutc76976d2015-07-12 22:28:33 +0200301 scc_mgr_set(SCC_MGR_DQS_IN_DELAY_OFFSET, read_group, delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500302}
303
Dinh Nguyen3da42852015-06-02 22:52:49 -0500304static void scc_mgr_set_dqs_en_phase(uint32_t read_group, uint32_t phase)
305{
Marek Vasutc76976d2015-07-12 22:28:33 +0200306 scc_mgr_set(SCC_MGR_DQS_EN_PHASE_OFFSET, read_group, phase);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500307}
308
Marek Vasut5ff825b2015-07-12 22:11:55 +0200309static void scc_mgr_set_dqs_en_delay(uint32_t read_group, uint32_t delay)
310{
Marek Vasutc76976d2015-07-12 22:28:33 +0200311 scc_mgr_set(SCC_MGR_DQS_EN_DELAY_OFFSET, read_group, delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200312}
313
Marek Vasut32675242015-07-17 06:07:13 +0200314static void scc_mgr_set_dqs_io_in_delay(uint32_t delay)
Marek Vasut5ff825b2015-07-12 22:11:55 +0200315{
Marek Vasutc76976d2015-07-12 22:28:33 +0200316 scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, RW_MGR_MEM_DQ_PER_WRITE_DQS,
317 delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200318}
319
320static void scc_mgr_set_dq_in_delay(uint32_t dq_in_group, uint32_t delay)
321{
Marek Vasutc76976d2015-07-12 22:28:33 +0200322 scc_mgr_set(SCC_MGR_IO_IN_DELAY_OFFSET, dq_in_group, delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200323}
324
325static void scc_mgr_set_dq_out1_delay(uint32_t dq_in_group, uint32_t delay)
326{
Marek Vasutc76976d2015-07-12 22:28:33 +0200327 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET, dq_in_group, delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200328}
329
Marek Vasut32675242015-07-17 06:07:13 +0200330static void scc_mgr_set_dqs_out1_delay(uint32_t delay)
Marek Vasut5ff825b2015-07-12 22:11:55 +0200331{
Marek Vasutc76976d2015-07-12 22:28:33 +0200332 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET, RW_MGR_MEM_DQ_PER_WRITE_DQS,
333 delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200334}
335
336static void scc_mgr_set_dm_out1_delay(uint32_t dm, uint32_t delay)
337{
Marek Vasutc76976d2015-07-12 22:28:33 +0200338 scc_mgr_set(SCC_MGR_IO_OUT1_DELAY_OFFSET,
339 RW_MGR_MEM_DQ_PER_WRITE_DQS + 1 + dm,
340 delay);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200341}
342
343/* load up dqs config settings */
344static void scc_mgr_load_dqs(uint32_t dqs)
345{
346 writel(dqs, &sdr_scc_mgr->dqs_ena);
347}
348
349/* load up dqs io config settings */
350static void scc_mgr_load_dqs_io(void)
351{
352 writel(0, &sdr_scc_mgr->dqs_io_ena);
353}
354
355/* load up dq config settings */
356static void scc_mgr_load_dq(uint32_t dq_in_group)
357{
358 writel(dq_in_group, &sdr_scc_mgr->dq_ena);
359}
360
361/* load up dm config settings */
362static void scc_mgr_load_dm(uint32_t dm)
363{
364 writel(dm, &sdr_scc_mgr->dm_ena);
365}
366
Marek Vasut0b69b802015-07-12 23:25:21 +0200367/**
368 * scc_mgr_set_all_ranks() - Set SCC Manager register for all ranks
369 * @off: Base offset in SCC Manager space
370 * @grp: Read/Write group
371 * @val: Value to be set
372 * @update: If non-zero, trigger SCC Manager update for all ranks
373 *
374 * This function sets the SCC Manager (Scan Chain Control Manager) register
375 * and optionally triggers the SCC update for all ranks.
376 */
377static void scc_mgr_set_all_ranks(const u32 off, const u32 grp, const u32 val,
378 const int update)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500379{
Marek Vasut0b69b802015-07-12 23:25:21 +0200380 u32 r;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500381
382 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
383 r += NUM_RANKS_PER_SHADOW_REG) {
Marek Vasut0b69b802015-07-12 23:25:21 +0200384 scc_mgr_set(off, grp, val);
Marek Vasut162d60e2015-07-12 23:14:33 +0200385
Marek Vasut0b69b802015-07-12 23:25:21 +0200386 if (update || (r == 0)) {
387 writel(grp, &sdr_scc_mgr->dqs_ena);
Marek Vasut1273dd92015-07-12 21:05:08 +0200388 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500389 }
390 }
391}
392
Marek Vasut0b69b802015-07-12 23:25:21 +0200393static void scc_mgr_set_dqs_en_phase_all_ranks(u32 read_group, u32 phase)
394{
395 /*
396 * USER although the h/w doesn't support different phases per
397 * shadow register, for simplicity our scc manager modeling
398 * keeps different phase settings per shadow reg, and it's
399 * important for us to keep them in sync to match h/w.
400 * for efficiency, the scan chain update should occur only
401 * once to sr0.
402 */
403 scc_mgr_set_all_ranks(SCC_MGR_DQS_EN_PHASE_OFFSET,
404 read_group, phase, 0);
405}
406
Dinh Nguyen3da42852015-06-02 22:52:49 -0500407static void scc_mgr_set_dqdqs_output_phase_all_ranks(uint32_t write_group,
408 uint32_t phase)
409{
Marek Vasut0b69b802015-07-12 23:25:21 +0200410 /*
411 * USER although the h/w doesn't support different phases per
412 * shadow register, for simplicity our scc manager modeling
413 * keeps different phase settings per shadow reg, and it's
414 * important for us to keep them in sync to match h/w.
415 * for efficiency, the scan chain update should occur only
416 * once to sr0.
417 */
418 scc_mgr_set_all_ranks(SCC_MGR_DQDQS_OUT_PHASE_OFFSET,
419 write_group, phase, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500420}
421
Dinh Nguyen3da42852015-06-02 22:52:49 -0500422static void scc_mgr_set_dqs_en_delay_all_ranks(uint32_t read_group,
423 uint32_t delay)
424{
Dinh Nguyen3da42852015-06-02 22:52:49 -0500425 /*
426 * In shadow register mode, the T11 settings are stored in
427 * registers in the core, which are updated by the DQS_ENA
428 * signals. Not issuing the SCC_MGR_UPD command allows us to
429 * save lots of rank switching overhead, by calling
430 * select_shadow_regs_for_update with update_scan_chains
431 * set to 0.
432 */
Marek Vasut0b69b802015-07-12 23:25:21 +0200433 scc_mgr_set_all_ranks(SCC_MGR_DQS_EN_DELAY_OFFSET,
434 read_group, delay, 1);
Marek Vasut1273dd92015-07-12 21:05:08 +0200435 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500436}
437
Marek Vasut5be355c2015-07-12 23:39:06 +0200438/**
439 * scc_mgr_set_oct_out1_delay() - Set OCT output delay
440 * @write_group: Write group
441 * @delay: Delay value
442 *
443 * This function sets the OCT output delay in SCC manager.
444 */
445static void scc_mgr_set_oct_out1_delay(const u32 write_group, const u32 delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500446{
Marek Vasut5be355c2015-07-12 23:39:06 +0200447 const int ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
448 RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
449 const int base = write_group * ratio;
450 int i;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500451 /*
452 * Load the setting in the SCC manager
453 * Although OCT affects only write data, the OCT delay is controlled
454 * by the DQS logic block which is instantiated once per read group.
455 * For protocols where a write group consists of multiple read groups,
456 * the setting must be set multiple times.
457 */
Marek Vasut5be355c2015-07-12 23:39:06 +0200458 for (i = 0; i < ratio; i++)
459 scc_mgr_set(SCC_MGR_OCT_OUT1_DELAY_OFFSET, base + i, delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500460}
461
Marek Vasut37a37ca2015-07-19 01:32:55 +0200462/**
463 * scc_mgr_set_hhp_extras() - Set HHP extras.
464 *
465 * Load the fixed setting in the SCC manager HHP extras.
466 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500467static void scc_mgr_set_hhp_extras(void)
468{
469 /*
470 * Load the fixed setting in the SCC manager
Marek Vasut37a37ca2015-07-19 01:32:55 +0200471 * bits: 0:0 = 1'b1 - DQS bypass
472 * bits: 1:1 = 1'b1 - DQ bypass
473 * bits: 4:2 = 3'b001 - rfifo_mode
474 * bits: 6:5 = 2'b01 - rfifo clock_select
475 * bits: 7:7 = 1'b0 - separate gating from ungating setting
476 * bits: 8:8 = 1'b0 - separate OE from Output delay setting
Dinh Nguyen3da42852015-06-02 22:52:49 -0500477 */
Marek Vasut37a37ca2015-07-19 01:32:55 +0200478 const u32 value = (0 << 8) | (0 << 7) | (1 << 5) |
479 (1 << 2) | (1 << 1) | (1 << 0);
480 const u32 addr = SDR_PHYGRP_SCCGRP_ADDRESS |
481 SCC_MGR_HHP_GLOBALS_OFFSET |
482 SCC_MGR_HHP_EXTRAS_OFFSET;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500483
Marek Vasut37a37ca2015-07-19 01:32:55 +0200484 debug_cond(DLEVEL == 1, "%s:%d Setting HHP Extras\n",
485 __func__, __LINE__);
486 writel(value, addr);
487 debug_cond(DLEVEL == 1, "%s:%d Done Setting HHP Extras\n",
488 __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500489}
490
Marek Vasutf42af352015-07-20 04:41:53 +0200491/**
492 * scc_mgr_zero_all() - Zero all DQS config
493 *
494 * Zero all DQS config.
Dinh Nguyen3da42852015-06-02 22:52:49 -0500495 */
496static void scc_mgr_zero_all(void)
497{
Marek Vasutf42af352015-07-20 04:41:53 +0200498 int i, r;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500499
500 /*
501 * USER Zero all DQS config settings, across all groups and all
502 * shadow registers
503 */
Marek Vasutf42af352015-07-20 04:41:53 +0200504 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
505 r += NUM_RANKS_PER_SHADOW_REG) {
Dinh Nguyen3da42852015-06-02 22:52:49 -0500506 for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
507 /*
508 * The phases actually don't exist on a per-rank basis,
509 * but there's no harm updating them several times, so
510 * let's keep the code simple.
511 */
512 scc_mgr_set_dqs_bus_in_delay(i, IO_DQS_IN_RESERVE);
513 scc_mgr_set_dqs_en_phase(i, 0);
514 scc_mgr_set_dqs_en_delay(i, 0);
515 }
516
517 for (i = 0; i < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; i++) {
518 scc_mgr_set_dqdqs_output_phase(i, 0);
Marek Vasutf42af352015-07-20 04:41:53 +0200519 /* Arria V/Cyclone V don't have out2. */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500520 scc_mgr_set_oct_out1_delay(i, IO_DQS_OUT_RESERVE);
521 }
522 }
523
Marek Vasutf42af352015-07-20 04:41:53 +0200524 /* Multicast to all DQS group enables. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200525 writel(0xff, &sdr_scc_mgr->dqs_ena);
526 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500527}
528
Marek Vasutc5c5f532015-07-17 02:06:20 +0200529/**
530 * scc_set_bypass_mode() - Set bypass mode and trigger SCC update
531 * @write_group: Write group
532 *
533 * Set bypass mode and trigger SCC update.
534 */
535static void scc_set_bypass_mode(const u32 write_group)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500536{
Marek Vasutc5c5f532015-07-17 02:06:20 +0200537 /* Multicast to all DQ enables. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200538 writel(0xff, &sdr_scc_mgr->dq_ena);
539 writel(0xff, &sdr_scc_mgr->dm_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500540
Marek Vasutc5c5f532015-07-17 02:06:20 +0200541 /* Update current DQS IO enable. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200542 writel(0, &sdr_scc_mgr->dqs_io_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500543
Marek Vasutc5c5f532015-07-17 02:06:20 +0200544 /* Update the DQS logic. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200545 writel(write_group, &sdr_scc_mgr->dqs_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500546
Marek Vasutc5c5f532015-07-17 02:06:20 +0200547 /* Hit update. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200548 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500549}
550
Marek Vasut5e837892015-07-13 00:30:09 +0200551/**
552 * scc_mgr_load_dqs_for_write_group() - Load DQS settings for Write Group
553 * @write_group: Write group
554 *
555 * Load DQS settings for Write Group, do not trigger SCC update.
556 */
557static void scc_mgr_load_dqs_for_write_group(const u32 write_group)
Marek Vasut5ff825b2015-07-12 22:11:55 +0200558{
Marek Vasut5e837892015-07-13 00:30:09 +0200559 const int ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
560 RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
561 const int base = write_group * ratio;
562 int i;
Marek Vasut5ff825b2015-07-12 22:11:55 +0200563 /*
Marek Vasut5e837892015-07-13 00:30:09 +0200564 * Load the setting in the SCC manager
Marek Vasut5ff825b2015-07-12 22:11:55 +0200565 * Although OCT affects only write data, the OCT delay is controlled
566 * by the DQS logic block which is instantiated once per read group.
567 * For protocols where a write group consists of multiple read groups,
Marek Vasut5e837892015-07-13 00:30:09 +0200568 * the setting must be set multiple times.
Marek Vasut5ff825b2015-07-12 22:11:55 +0200569 */
Marek Vasut5e837892015-07-13 00:30:09 +0200570 for (i = 0; i < ratio; i++)
571 writel(base + i, &sdr_scc_mgr->dqs_ena);
Marek Vasut5ff825b2015-07-12 22:11:55 +0200572}
573
Marek Vasutd41ea932015-07-20 08:41:04 +0200574/**
575 * scc_mgr_zero_group() - Zero all configs for a group
576 *
577 * Zero DQ, DM, DQS and OCT configs for a group.
578 */
579static void scc_mgr_zero_group(const u32 write_group, const int out_only)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500580{
Marek Vasutd41ea932015-07-20 08:41:04 +0200581 int i, r;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500582
Marek Vasutd41ea932015-07-20 08:41:04 +0200583 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
584 r += NUM_RANKS_PER_SHADOW_REG) {
585 /* Zero all DQ config settings. */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500586 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
Marek Vasut07aee5b2015-07-12 22:07:33 +0200587 scc_mgr_set_dq_out1_delay(i, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500588 if (!out_only)
Marek Vasut07aee5b2015-07-12 22:07:33 +0200589 scc_mgr_set_dq_in_delay(i, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500590 }
591
Marek Vasutd41ea932015-07-20 08:41:04 +0200592 /* Multicast to all DQ enables. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200593 writel(0xff, &sdr_scc_mgr->dq_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500594
Marek Vasutd41ea932015-07-20 08:41:04 +0200595 /* Zero all DM config settings. */
596 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++)
Marek Vasut07aee5b2015-07-12 22:07:33 +0200597 scc_mgr_set_dm_out1_delay(i, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500598
Marek Vasutd41ea932015-07-20 08:41:04 +0200599 /* Multicast to all DM enables. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200600 writel(0xff, &sdr_scc_mgr->dm_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500601
Marek Vasutd41ea932015-07-20 08:41:04 +0200602 /* Zero all DQS IO settings. */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500603 if (!out_only)
Marek Vasut32675242015-07-17 06:07:13 +0200604 scc_mgr_set_dqs_io_in_delay(0);
Marek Vasutd41ea932015-07-20 08:41:04 +0200605
606 /* Arria V/Cyclone V don't have out2. */
Marek Vasut32675242015-07-17 06:07:13 +0200607 scc_mgr_set_dqs_out1_delay(IO_DQS_OUT_RESERVE);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500608 scc_mgr_set_oct_out1_delay(write_group, IO_DQS_OUT_RESERVE);
609 scc_mgr_load_dqs_for_write_group(write_group);
610
Marek Vasutd41ea932015-07-20 08:41:04 +0200611 /* Multicast to all DQS IO enables (only 1 in total). */
Marek Vasut1273dd92015-07-12 21:05:08 +0200612 writel(0, &sdr_scc_mgr->dqs_io_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500613
Marek Vasutd41ea932015-07-20 08:41:04 +0200614 /* Hit update to zero everything. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200615 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500616 }
617}
618
Dinh Nguyen3da42852015-06-02 22:52:49 -0500619/*
620 * apply and load a particular input delay for the DQ pins in a group
621 * group_bgn is the index of the first dq pin (in the write group)
622 */
Marek Vasut32675242015-07-17 06:07:13 +0200623static void scc_mgr_apply_group_dq_in_delay(uint32_t group_bgn, uint32_t delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500624{
625 uint32_t i, p;
626
627 for (i = 0, p = group_bgn; i < RW_MGR_MEM_DQ_PER_READ_DQS; i++, p++) {
Marek Vasut07aee5b2015-07-12 22:07:33 +0200628 scc_mgr_set_dq_in_delay(p, delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500629 scc_mgr_load_dq(p);
630 }
631}
632
Marek Vasut300c2e62015-07-17 05:42:49 +0200633/**
634 * scc_mgr_apply_group_dq_out1_delay() - Apply and load an output delay for the DQ pins in a group
635 * @delay: Delay value
636 *
637 * Apply and load a particular output delay for the DQ pins in a group.
638 */
639static void scc_mgr_apply_group_dq_out1_delay(const u32 delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500640{
Marek Vasut300c2e62015-07-17 05:42:49 +0200641 int i;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500642
Marek Vasut300c2e62015-07-17 05:42:49 +0200643 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
644 scc_mgr_set_dq_out1_delay(i, delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500645 scc_mgr_load_dq(i);
646 }
647}
648
649/* apply and load a particular output delay for the DM pins in a group */
Marek Vasut32675242015-07-17 06:07:13 +0200650static void scc_mgr_apply_group_dm_out1_delay(uint32_t delay1)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500651{
652 uint32_t i;
653
654 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++) {
Marek Vasut07aee5b2015-07-12 22:07:33 +0200655 scc_mgr_set_dm_out1_delay(i, delay1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500656 scc_mgr_load_dm(i);
657 }
658}
659
660
661/* apply and load delay on both DQS and OCT out1 */
662static void scc_mgr_apply_group_dqs_io_and_oct_out1(uint32_t write_group,
663 uint32_t delay)
664{
Marek Vasut32675242015-07-17 06:07:13 +0200665 scc_mgr_set_dqs_out1_delay(delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500666 scc_mgr_load_dqs_io();
667
668 scc_mgr_set_oct_out1_delay(write_group, delay);
669 scc_mgr_load_dqs_for_write_group(write_group);
670}
671
Marek Vasut5cb1b502015-07-17 05:33:28 +0200672/**
673 * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output side: DQ, DM, DQS, OCT
674 * @write_group: Write group
675 * @delay: Delay value
676 *
677 * Apply a delay to the entire output side: DQ, DM, DQS, OCT.
678 */
Marek Vasut8eccde32015-07-17 05:30:14 +0200679static void scc_mgr_apply_group_all_out_delay_add(const u32 write_group,
Marek Vasut8eccde32015-07-17 05:30:14 +0200680 const u32 delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500681{
Marek Vasut8eccde32015-07-17 05:30:14 +0200682 u32 i, new_delay;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500683
Marek Vasut8eccde32015-07-17 05:30:14 +0200684 /* DQ shift */
685 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500686 scc_mgr_load_dq(i);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500687
Marek Vasut8eccde32015-07-17 05:30:14 +0200688 /* DM shift */
689 for (i = 0; i < RW_MGR_NUM_DM_PER_WRITE_GROUP; i++)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500690 scc_mgr_load_dm(i);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500691
Marek Vasut5cb1b502015-07-17 05:33:28 +0200692 /* DQS shift */
693 new_delay = READ_SCC_DQS_IO_OUT2_DELAY + delay;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500694 if (new_delay > IO_IO_OUT2_DELAY_MAX) {
Marek Vasut5cb1b502015-07-17 05:33:28 +0200695 debug_cond(DLEVEL == 1,
696 "%s:%d (%u, %u) DQS: %u > %d; adding %u to OUT1\n",
697 __func__, __LINE__, write_group, delay, new_delay,
698 IO_IO_OUT2_DELAY_MAX,
Dinh Nguyen3da42852015-06-02 22:52:49 -0500699 new_delay - IO_IO_OUT2_DELAY_MAX);
Marek Vasut5cb1b502015-07-17 05:33:28 +0200700 new_delay -= IO_IO_OUT2_DELAY_MAX;
701 scc_mgr_set_dqs_out1_delay(new_delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500702 }
703
704 scc_mgr_load_dqs_io();
705
Marek Vasut5cb1b502015-07-17 05:33:28 +0200706 /* OCT shift */
707 new_delay = READ_SCC_OCT_OUT2_DELAY + delay;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500708 if (new_delay > IO_IO_OUT2_DELAY_MAX) {
Marek Vasut5cb1b502015-07-17 05:33:28 +0200709 debug_cond(DLEVEL == 1,
710 "%s:%d (%u, %u) DQS: %u > %d; adding %u to OUT1\n",
711 __func__, __LINE__, write_group, delay,
712 new_delay, IO_IO_OUT2_DELAY_MAX,
Dinh Nguyen3da42852015-06-02 22:52:49 -0500713 new_delay - IO_IO_OUT2_DELAY_MAX);
Marek Vasut5cb1b502015-07-17 05:33:28 +0200714 new_delay -= IO_IO_OUT2_DELAY_MAX;
715 scc_mgr_set_oct_out1_delay(write_group, new_delay);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500716 }
717
718 scc_mgr_load_dqs_for_write_group(write_group);
719}
720
Marek Vasutf51a7d32015-07-19 02:18:21 +0200721/**
722 * scc_mgr_apply_group_all_out_delay_add() - Apply a delay to the entire output side to all ranks
723 * @write_group: Write group
724 * @delay: Delay value
725 *
726 * Apply a delay to the entire output side (DQ, DM, DQS, OCT) to all ranks.
Dinh Nguyen3da42852015-06-02 22:52:49 -0500727 */
Marek Vasutf51a7d32015-07-19 02:18:21 +0200728static void
729scc_mgr_apply_group_all_out_delay_add_all_ranks(const u32 write_group,
730 const u32 delay)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500731{
Marek Vasutf51a7d32015-07-19 02:18:21 +0200732 int r;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500733
734 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
Marek Vasutf51a7d32015-07-19 02:18:21 +0200735 r += NUM_RANKS_PER_SHADOW_REG) {
Marek Vasut5cb1b502015-07-17 05:33:28 +0200736 scc_mgr_apply_group_all_out_delay_add(write_group, delay);
Marek Vasut1273dd92015-07-12 21:05:08 +0200737 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500738 }
739}
740
Marek Vasutf936f942015-07-26 11:07:19 +0200741/**
742 * set_jump_as_return() - Return instruction optimization
743 *
744 * Optimization used to recover some slots in ddr3 inst_rom could be
745 * applied to other protocols if we wanted to
746 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500747static void set_jump_as_return(void)
748{
Dinh Nguyen3da42852015-06-02 22:52:49 -0500749 /*
Marek Vasutf936f942015-07-26 11:07:19 +0200750 * To save space, we replace return with jump to special shared
Dinh Nguyen3da42852015-06-02 22:52:49 -0500751 * RETURN instruction so we set the counter to large value so that
Marek Vasutf936f942015-07-26 11:07:19 +0200752 * we always jump.
Dinh Nguyen3da42852015-06-02 22:52:49 -0500753 */
Marek Vasut1273dd92015-07-12 21:05:08 +0200754 writel(0xff, &sdr_rw_load_mgr_regs->load_cntr0);
755 writel(RW_MGR_RETURN, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500756}
757
Marek Vasut3de96222015-07-26 11:46:04 +0200758/**
759 * delay_for_n_mem_clocks() - Delay for N memory clocks
760 * @clocks: Length of the delay
761 *
762 * Delay for N memory clocks.
Dinh Nguyen3da42852015-06-02 22:52:49 -0500763 */
Marek Vasut90a584b2015-07-26 11:11:28 +0200764static void delay_for_n_mem_clocks(const u32 clocks)
Dinh Nguyen3da42852015-06-02 22:52:49 -0500765{
Marek Vasut90a584b2015-07-26 11:11:28 +0200766 u32 afi_clocks;
Marek Vasut6a39be62015-07-26 11:42:53 +0200767 u16 c_loop;
768 u8 inner;
769 u8 outer;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500770
771 debug("%s:%d: clocks=%u ... start\n", __func__, __LINE__, clocks);
772
Marek Vasutcbcaf462015-07-26 11:34:09 +0200773 /* Scale (rounding up) to get afi clocks. */
Marek Vasut90a584b2015-07-26 11:11:28 +0200774 afi_clocks = DIV_ROUND_UP(clocks, AFI_RATE_RATIO);
Marek Vasutcbcaf462015-07-26 11:34:09 +0200775 if (afi_clocks) /* Temporary underflow protection */
776 afi_clocks--;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500777
778 /*
Marek Vasut90a584b2015-07-26 11:11:28 +0200779 * Note, we don't bother accounting for being off a little
780 * bit because of a few extra instructions in outer loops.
781 * Note, the loops have a test at the end, and do the test
782 * before the decrement, and so always perform the loop
Dinh Nguyen3da42852015-06-02 22:52:49 -0500783 * 1 time more than the counter value
784 */
Marek Vasut6a39be62015-07-26 11:42:53 +0200785 c_loop = afi_clocks >> 16;
786 outer = c_loop ? 0xff : (afi_clocks >> 8);
787 inner = outer ? 0xff : afi_clocks;
Dinh Nguyen3da42852015-06-02 22:52:49 -0500788
789 /*
790 * rom instructions are structured as follows:
791 *
792 * IDLE_LOOP2: jnz cntr0, TARGET_A
793 * IDLE_LOOP1: jnz cntr1, TARGET_B
794 * return
795 *
796 * so, when doing nested loops, TARGET_A is set to IDLE_LOOP2, and
797 * TARGET_B is set to IDLE_LOOP2 as well
798 *
799 * if we have no outer loop, though, then we can use IDLE_LOOP1 only,
800 * and set TARGET_B to IDLE_LOOP1 and we skip IDLE_LOOP2 entirely
801 *
802 * a little confusing, but it helps save precious space in the inst_rom
803 * and sequencer rom and keeps the delays more accurate and reduces
804 * overhead
805 */
Marek Vasutcbcaf462015-07-26 11:34:09 +0200806 if (afi_clocks < 0x100) {
Marek Vasut1273dd92015-07-12 21:05:08 +0200807 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(inner),
808 &sdr_rw_load_mgr_regs->load_cntr1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500809
Marek Vasut1273dd92015-07-12 21:05:08 +0200810 writel(RW_MGR_IDLE_LOOP1,
811 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500812
Marek Vasut1273dd92015-07-12 21:05:08 +0200813 writel(RW_MGR_IDLE_LOOP1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
814 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500815 } else {
Marek Vasut1273dd92015-07-12 21:05:08 +0200816 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(inner),
817 &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500818
Marek Vasut1273dd92015-07-12 21:05:08 +0200819 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(outer),
820 &sdr_rw_load_mgr_regs->load_cntr1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500821
Marek Vasut1273dd92015-07-12 21:05:08 +0200822 writel(RW_MGR_IDLE_LOOP2,
823 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500824
Marek Vasut1273dd92015-07-12 21:05:08 +0200825 writel(RW_MGR_IDLE_LOOP2,
826 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500827
Marek Vasut0c1b81b2015-07-26 11:44:54 +0200828 do {
829 writel(RW_MGR_IDLE_LOOP2,
830 SDR_PHYGRP_RWMGRGRP_ADDRESS |
831 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
832 } while (c_loop-- != 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500833 }
834 debug("%s:%d clocks=%u ... end\n", __func__, __LINE__, clocks);
835}
836
Marek Vasut944fe712015-07-13 00:44:30 +0200837/**
838 * rw_mgr_mem_init_load_regs() - Load instruction registers
839 * @cntr0: Counter 0 value
840 * @cntr1: Counter 1 value
841 * @cntr2: Counter 2 value
842 * @jump: Jump instruction value
843 *
844 * Load instruction registers.
845 */
846static void rw_mgr_mem_init_load_regs(u32 cntr0, u32 cntr1, u32 cntr2, u32 jump)
847{
848 uint32_t grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
849 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
850
851 /* Load counters */
852 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr0),
853 &sdr_rw_load_mgr_regs->load_cntr0);
854 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr1),
855 &sdr_rw_load_mgr_regs->load_cntr1);
856 writel(SKIP_DELAY_LOOP_VALUE_OR_ZERO(cntr2),
857 &sdr_rw_load_mgr_regs->load_cntr2);
858
859 /* Load jump address */
860 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
861 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add1);
862 writel(jump, &sdr_rw_load_jump_mgr_regs->load_jump_add2);
863
864 /* Execute count instruction */
865 writel(jump, grpaddr);
866}
867
Marek Vasutecd23342015-07-13 00:51:05 +0200868/**
869 * rw_mgr_mem_load_user() - Load user calibration values
870 * @fin1: Final instruction 1
871 * @fin2: Final instruction 2
872 * @precharge: If 1, precharge the banks at the end
873 *
874 * Load user calibration values and optionally precharge the banks.
875 */
876static void rw_mgr_mem_load_user(const u32 fin1, const u32 fin2,
877 const int precharge)
878{
879 u32 grpaddr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
880 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
881 u32 r;
882
883 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS; r++) {
Marek Vasutecd23342015-07-13 00:51:05 +0200884 /* set rank */
885 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_OFF);
886
887 /* precharge all banks ... */
888 if (precharge)
889 writel(RW_MGR_PRECHARGE_ALL, grpaddr);
890
891 /*
892 * USER Use Mirror-ed commands for odd ranks if address
893 * mirrorring is on
894 */
895 if ((RW_MGR_MEM_ADDRESS_MIRRORING >> r) & 0x1) {
896 set_jump_as_return();
897 writel(RW_MGR_MRS2_MIRR, grpaddr);
898 delay_for_n_mem_clocks(4);
899 set_jump_as_return();
900 writel(RW_MGR_MRS3_MIRR, grpaddr);
901 delay_for_n_mem_clocks(4);
902 set_jump_as_return();
903 writel(RW_MGR_MRS1_MIRR, grpaddr);
904 delay_for_n_mem_clocks(4);
905 set_jump_as_return();
906 writel(fin1, grpaddr);
907 } else {
908 set_jump_as_return();
909 writel(RW_MGR_MRS2, grpaddr);
910 delay_for_n_mem_clocks(4);
911 set_jump_as_return();
912 writel(RW_MGR_MRS3, grpaddr);
913 delay_for_n_mem_clocks(4);
914 set_jump_as_return();
915 writel(RW_MGR_MRS1, grpaddr);
916 set_jump_as_return();
917 writel(fin2, grpaddr);
918 }
919
920 if (precharge)
921 continue;
922
923 set_jump_as_return();
924 writel(RW_MGR_ZQCL, grpaddr);
925
926 /* tZQinit = tDLLK = 512 ck cycles */
927 delay_for_n_mem_clocks(512);
928 }
929}
930
Marek Vasut8e9d7d02015-07-26 10:57:06 +0200931/**
932 * rw_mgr_mem_initialize() - Initialize RW Manager
933 *
934 * Initialize RW Manager.
935 */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500936static void rw_mgr_mem_initialize(void)
937{
Dinh Nguyen3da42852015-06-02 22:52:49 -0500938 debug("%s:%d\n", __func__, __LINE__);
939
940 /* The reset / cke part of initialization is broadcasted to all ranks */
Marek Vasut1273dd92015-07-12 21:05:08 +0200941 writel(RW_MGR_RANK_ALL, SDR_PHYGRP_RWMGRGRP_ADDRESS |
942 RW_MGR_SET_CS_AND_ODT_MASK_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500943
944 /*
945 * Here's how you load register for a loop
946 * Counters are located @ 0x800
947 * Jump address are located @ 0xC00
948 * For both, registers 0 to 3 are selected using bits 3 and 2, like
949 * in 0x800, 0x804, 0x808, 0x80C and 0xC00, 0xC04, 0xC08, 0xC0C
950 * I know this ain't pretty, but Avalon bus throws away the 2 least
951 * significant bits
952 */
953
Marek Vasut8e9d7d02015-07-26 10:57:06 +0200954 /* Start with memory RESET activated */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500955
956 /* tINIT = 200us */
957
958 /*
959 * 200us @ 266MHz (3.75 ns) ~ 54000 clock cycles
960 * If a and b are the number of iteration in 2 nested loops
961 * it takes the following number of cycles to complete the operation:
962 * number_of_cycles = ((2 + n) * a + 2) * b
963 * where n is the number of instruction in the inner loop
964 * One possible solution is n = 0 , a = 256 , b = 106 => a = FF,
965 * b = 6A
966 */
Marek Vasut944fe712015-07-13 00:44:30 +0200967 rw_mgr_mem_init_load_regs(SEQ_TINIT_CNTR0_VAL, SEQ_TINIT_CNTR1_VAL,
968 SEQ_TINIT_CNTR2_VAL,
969 RW_MGR_INIT_RESET_0_CKE_0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500970
Marek Vasut8e9d7d02015-07-26 10:57:06 +0200971 /* Indicate that memory is stable. */
Marek Vasut1273dd92015-07-12 21:05:08 +0200972 writel(1, &phy_mgr_cfg->reset_mem_stbl);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500973
974 /*
975 * transition the RESET to high
976 * Wait for 500us
977 */
978
979 /*
980 * 500us @ 266MHz (3.75 ns) ~ 134000 clock cycles
981 * If a and b are the number of iteration in 2 nested loops
982 * it takes the following number of cycles to complete the operation
983 * number_of_cycles = ((2 + n) * a + 2) * b
984 * where n is the number of instruction in the inner loop
985 * One possible solution is n = 2 , a = 131 , b = 256 => a = 83,
986 * b = FF
987 */
Marek Vasut944fe712015-07-13 00:44:30 +0200988 rw_mgr_mem_init_load_regs(SEQ_TRESET_CNTR0_VAL, SEQ_TRESET_CNTR1_VAL,
989 SEQ_TRESET_CNTR2_VAL,
990 RW_MGR_INIT_RESET_1_CKE_0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500991
Marek Vasut8e9d7d02015-07-26 10:57:06 +0200992 /* Bring up clock enable. */
Dinh Nguyen3da42852015-06-02 22:52:49 -0500993
994 /* tXRP < 250 ck cycles */
995 delay_for_n_mem_clocks(250);
996
Marek Vasutecd23342015-07-13 00:51:05 +0200997 rw_mgr_mem_load_user(RW_MGR_MRS0_DLL_RESET_MIRR, RW_MGR_MRS0_DLL_RESET,
998 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -0500999}
1000
Marek Vasutf1f22f72015-07-26 10:59:19 +02001001/**
1002 * rw_mgr_mem_handoff() - Hand off the memory to user
1003 *
1004 * At the end of calibration we have to program the user settings in
1005 * and hand off the memory to the user.
Dinh Nguyen3da42852015-06-02 22:52:49 -05001006 */
1007static void rw_mgr_mem_handoff(void)
1008{
Marek Vasutecd23342015-07-13 00:51:05 +02001009 rw_mgr_mem_load_user(RW_MGR_MRS0_USER_MIRR, RW_MGR_MRS0_USER, 1);
1010 /*
Marek Vasutf1f22f72015-07-26 10:59:19 +02001011 * Need to wait tMOD (12CK or 15ns) time before issuing other
1012 * commands, but we will have plenty of NIOS cycles before actual
1013 * handoff so its okay.
Marek Vasutecd23342015-07-13 00:51:05 +02001014 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001015}
1016
Marek Vasut8371c2e2015-07-21 06:00:36 +02001017/**
1018 * rw_mgr_mem_calibrate_write_test_issue() - Issue write test command
1019 * @group: Write Group
1020 * @use_dm: Use DM
1021 *
1022 * Issue write test command. Two variants are provided, one that just tests
1023 * a write pattern and another that tests datamask functionality.
Marek Vasutad64769c2015-07-21 05:43:37 +02001024 */
Marek Vasut8371c2e2015-07-21 06:00:36 +02001025static void rw_mgr_mem_calibrate_write_test_issue(u32 group,
1026 u32 test_dm)
Marek Vasutad64769c2015-07-21 05:43:37 +02001027{
Marek Vasut8371c2e2015-07-21 06:00:36 +02001028 const u32 quick_write_mode =
1029 (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES) &&
1030 ENABLE_SUPER_QUICK_CALIBRATION;
1031 u32 mcc_instruction;
1032 u32 rw_wl_nop_cycles;
Marek Vasutad64769c2015-07-21 05:43:37 +02001033
1034 /*
1035 * Set counter and jump addresses for the right
1036 * number of NOP cycles.
1037 * The number of supported NOP cycles can range from -1 to infinity
1038 * Three different cases are handled:
1039 *
1040 * 1. For a number of NOP cycles greater than 0, the RW Mgr looping
1041 * mechanism will be used to insert the right number of NOPs
1042 *
1043 * 2. For a number of NOP cycles equals to 0, the micro-instruction
1044 * issuing the write command will jump straight to the
1045 * micro-instruction that turns on DQS (for DDRx), or outputs write
1046 * data (for RLD), skipping
1047 * the NOP micro-instruction all together
1048 *
1049 * 3. A number of NOP cycles equal to -1 indicates that DQS must be
1050 * turned on in the same micro-instruction that issues the write
1051 * command. Then we need
1052 * to directly jump to the micro-instruction that sends out the data
1053 *
1054 * NOTE: Implementing this mechanism uses 2 RW Mgr jump-counters
1055 * (2 and 3). One jump-counter (0) is used to perform multiple
1056 * write-read operations.
1057 * one counter left to issue this command in "multiple-group" mode
1058 */
1059
1060 rw_wl_nop_cycles = gbl->rw_wl_nop_cycles;
1061
1062 if (rw_wl_nop_cycles == -1) {
1063 /*
1064 * CNTR 2 - We want to execute the special write operation that
1065 * turns on DQS right away and then skip directly to the
1066 * instruction that sends out the data. We set the counter to a
1067 * large number so that the jump is always taken.
1068 */
1069 writel(0xFF, &sdr_rw_load_mgr_regs->load_cntr2);
1070
1071 /* CNTR 3 - Not used */
1072 if (test_dm) {
1073 mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0_WL_1;
1074 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_DATA,
1075 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1076 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_NOP,
1077 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1078 } else {
1079 mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0_WL_1;
1080 writel(RW_MGR_LFSR_WR_RD_BANK_0_DATA,
1081 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1082 writel(RW_MGR_LFSR_WR_RD_BANK_0_NOP,
1083 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1084 }
1085 } else if (rw_wl_nop_cycles == 0) {
1086 /*
1087 * CNTR 2 - We want to skip the NOP operation and go straight
1088 * to the DQS enable instruction. We set the counter to a large
1089 * number so that the jump is always taken.
1090 */
1091 writel(0xFF, &sdr_rw_load_mgr_regs->load_cntr2);
1092
1093 /* CNTR 3 - Not used */
1094 if (test_dm) {
1095 mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0;
1096 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_DQS,
1097 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1098 } else {
1099 mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0;
1100 writel(RW_MGR_LFSR_WR_RD_BANK_0_DQS,
1101 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1102 }
1103 } else {
1104 /*
1105 * CNTR 2 - In this case we want to execute the next instruction
1106 * and NOT take the jump. So we set the counter to 0. The jump
1107 * address doesn't count.
1108 */
1109 writel(0x0, &sdr_rw_load_mgr_regs->load_cntr2);
1110 writel(0x0, &sdr_rw_load_jump_mgr_regs->load_jump_add2);
1111
1112 /*
1113 * CNTR 3 - Set the nop counter to the number of cycles we
1114 * need to loop for, minus 1.
1115 */
1116 writel(rw_wl_nop_cycles - 1, &sdr_rw_load_mgr_regs->load_cntr3);
1117 if (test_dm) {
1118 mcc_instruction = RW_MGR_LFSR_WR_RD_DM_BANK_0;
1119 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_NOP,
1120 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1121 } else {
1122 mcc_instruction = RW_MGR_LFSR_WR_RD_BANK_0;
1123 writel(RW_MGR_LFSR_WR_RD_BANK_0_NOP,
1124 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
1125 }
1126 }
1127
1128 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1129 RW_MGR_RESET_READ_DATAPATH_OFFSET);
1130
1131 if (quick_write_mode)
1132 writel(0x08, &sdr_rw_load_mgr_regs->load_cntr0);
1133 else
1134 writel(0x40, &sdr_rw_load_mgr_regs->load_cntr0);
1135
1136 writel(mcc_instruction, &sdr_rw_load_jump_mgr_regs->load_jump_add0);
1137
1138 /*
1139 * CNTR 1 - This is used to ensure enough time elapses
1140 * for read data to come back.
1141 */
1142 writel(0x30, &sdr_rw_load_mgr_regs->load_cntr1);
1143
1144 if (test_dm) {
1145 writel(RW_MGR_LFSR_WR_RD_DM_BANK_0_WAIT,
1146 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
1147 } else {
1148 writel(RW_MGR_LFSR_WR_RD_BANK_0_WAIT,
1149 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
1150 }
1151
Marek Vasut8371c2e2015-07-21 06:00:36 +02001152 writel(mcc_instruction, (SDR_PHYGRP_RWMGRGRP_ADDRESS |
1153 RW_MGR_RUN_SINGLE_GROUP_OFFSET) +
1154 (group << 2));
Marek Vasutad64769c2015-07-21 05:43:37 +02001155}
1156
Marek Vasut4a82854b2015-07-21 05:57:11 +02001157/**
1158 * rw_mgr_mem_calibrate_write_test() - Test writes, check for single/multiple pass
1159 * @rank_bgn: Rank number
1160 * @write_group: Write Group
1161 * @use_dm: Use DM
1162 * @all_correct: All bits must be correct in the mask
1163 * @bit_chk: Resulting bit mask after the test
1164 * @all_ranks: Test all ranks
1165 *
1166 * Test writes, can check for a single bit pass or multiple bit pass.
1167 */
Marek Vasutb9452ea2015-07-21 05:54:39 +02001168static int
1169rw_mgr_mem_calibrate_write_test(const u32 rank_bgn, const u32 write_group,
1170 const u32 use_dm, const u32 all_correct,
1171 u32 *bit_chk, const u32 all_ranks)
Marek Vasutad64769c2015-07-21 05:43:37 +02001172{
Marek Vasutb9452ea2015-07-21 05:54:39 +02001173 const u32 rank_end = all_ranks ?
1174 RW_MGR_MEM_NUMBER_OF_RANKS :
1175 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1176 const u32 shift_ratio = RW_MGR_MEM_DQ_PER_WRITE_DQS /
1177 RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS;
1178 const u32 correct_mask_vg = param->write_correct_mask_vg;
1179
1180 u32 tmp_bit_chk, base_rw_mgr;
1181 int vg, r;
Marek Vasutad64769c2015-07-21 05:43:37 +02001182
1183 *bit_chk = param->write_correct_mask;
Marek Vasutad64769c2015-07-21 05:43:37 +02001184
1185 for (r = rank_bgn; r < rank_end; r++) {
Marek Vasutb9452ea2015-07-21 05:54:39 +02001186 /* Set rank */
Marek Vasutad64769c2015-07-21 05:43:37 +02001187 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1188
1189 tmp_bit_chk = 0;
Marek Vasutb9452ea2015-07-21 05:54:39 +02001190 for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS - 1;
1191 vg >= 0; vg--) {
1192 /* Reset the FIFOs to get pointers to known state. */
Marek Vasutad64769c2015-07-21 05:43:37 +02001193 writel(0, &phy_mgr_cmd->fifo_reset);
1194
Marek Vasutb9452ea2015-07-21 05:54:39 +02001195 rw_mgr_mem_calibrate_write_test_issue(
1196 write_group *
1197 RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS + vg,
Marek Vasutad64769c2015-07-21 05:43:37 +02001198 use_dm);
1199
Marek Vasutb9452ea2015-07-21 05:54:39 +02001200 base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
1201 tmp_bit_chk <<= shift_ratio;
1202 tmp_bit_chk |= (correct_mask_vg & ~(base_rw_mgr));
Marek Vasutad64769c2015-07-21 05:43:37 +02001203 }
Marek Vasutb9452ea2015-07-21 05:54:39 +02001204
Marek Vasutad64769c2015-07-21 05:43:37 +02001205 *bit_chk &= tmp_bit_chk;
1206 }
1207
Marek Vasutb9452ea2015-07-21 05:54:39 +02001208 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
Marek Vasutad64769c2015-07-21 05:43:37 +02001209 if (all_correct) {
Marek Vasutb9452ea2015-07-21 05:54:39 +02001210 debug_cond(DLEVEL == 2,
1211 "write_test(%u,%u,ALL) : %u == %u => %i\n",
1212 write_group, use_dm, *bit_chk,
1213 param->write_correct_mask,
1214 *bit_chk == param->write_correct_mask);
Marek Vasutad64769c2015-07-21 05:43:37 +02001215 return *bit_chk == param->write_correct_mask;
1216 } else {
1217 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
Marek Vasutb9452ea2015-07-21 05:54:39 +02001218 debug_cond(DLEVEL == 2,
1219 "write_test(%u,%u,ONE) : %u != %i => %i\n",
1220 write_group, use_dm, *bit_chk, 0, *bit_chk != 0);
Marek Vasutad64769c2015-07-21 05:43:37 +02001221 return *bit_chk != 0x00;
1222 }
1223}
1224
Marek Vasutd844c7d2015-07-18 03:55:07 +02001225/**
1226 * rw_mgr_mem_calibrate_read_test_patterns() - Read back test patterns
1227 * @rank_bgn: Rank number
1228 * @group: Read/Write Group
1229 * @all_ranks: Test all ranks
1230 *
1231 * Performs a guaranteed read on the patterns we are going to use during a
1232 * read test to ensure memory works.
Dinh Nguyen3da42852015-06-02 22:52:49 -05001233 */
Marek Vasutd844c7d2015-07-18 03:55:07 +02001234static int
1235rw_mgr_mem_calibrate_read_test_patterns(const u32 rank_bgn, const u32 group,
1236 const u32 all_ranks)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001237{
Marek Vasutd844c7d2015-07-18 03:55:07 +02001238 const u32 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1239 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
1240 const u32 addr_offset =
1241 (group * RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS) << 2;
1242 const u32 rank_end = all_ranks ?
1243 RW_MGR_MEM_NUMBER_OF_RANKS :
1244 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1245 const u32 shift_ratio = RW_MGR_MEM_DQ_PER_READ_DQS /
1246 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
1247 const u32 correct_mask_vg = param->read_correct_mask_vg;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001248
Marek Vasutd844c7d2015-07-18 03:55:07 +02001249 u32 tmp_bit_chk, base_rw_mgr, bit_chk;
1250 int vg, r;
1251 int ret = 0;
1252
1253 bit_chk = param->read_correct_mask;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001254
1255 for (r = rank_bgn; r < rank_end; r++) {
Marek Vasutd844c7d2015-07-18 03:55:07 +02001256 /* Set rank */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001257 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1258
1259 /* Load up a constant bursts of read commands */
Marek Vasut1273dd92015-07-12 21:05:08 +02001260 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr0);
1261 writel(RW_MGR_GUARANTEED_READ,
1262 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001263
Marek Vasut1273dd92015-07-12 21:05:08 +02001264 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr1);
1265 writel(RW_MGR_GUARANTEED_READ_CONT,
1266 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001267
1268 tmp_bit_chk = 0;
Marek Vasutd844c7d2015-07-18 03:55:07 +02001269 for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1;
1270 vg >= 0; vg--) {
1271 /* Reset the FIFOs to get pointers to known state. */
Marek Vasut1273dd92015-07-12 21:05:08 +02001272 writel(0, &phy_mgr_cmd->fifo_reset);
1273 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1274 RW_MGR_RESET_READ_DATAPATH_OFFSET);
Marek Vasutd844c7d2015-07-18 03:55:07 +02001275 writel(RW_MGR_GUARANTEED_READ,
1276 addr + addr_offset + (vg << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05001277
Marek Vasut1273dd92015-07-12 21:05:08 +02001278 base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
Marek Vasutd844c7d2015-07-18 03:55:07 +02001279 tmp_bit_chk <<= shift_ratio;
1280 tmp_bit_chk |= correct_mask_vg & ~base_rw_mgr;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001281 }
Marek Vasutd844c7d2015-07-18 03:55:07 +02001282
1283 bit_chk &= tmp_bit_chk;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001284 }
1285
Marek Vasut17fdc912015-07-12 20:05:54 +02001286 writel(RW_MGR_CLEAR_DQS_ENABLE, addr + (group << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05001287
1288 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
Marek Vasutd844c7d2015-07-18 03:55:07 +02001289
1290 if (bit_chk != param->read_correct_mask)
1291 ret = -EIO;
1292
1293 debug_cond(DLEVEL == 1,
1294 "%s:%d test_load_patterns(%u,ALL) => (%u == %u) => %i\n",
1295 __func__, __LINE__, group, bit_chk,
1296 param->read_correct_mask, ret);
1297
1298 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001299}
1300
Marek Vasutb6cb7f92015-07-18 03:34:22 +02001301/**
1302 * rw_mgr_mem_calibrate_read_load_patterns() - Load up the patterns for read test
1303 * @rank_bgn: Rank number
1304 * @all_ranks: Test all ranks
1305 *
1306 * Load up the patterns we are going to use during a read test.
1307 */
1308static void rw_mgr_mem_calibrate_read_load_patterns(const u32 rank_bgn,
1309 const int all_ranks)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001310{
Marek Vasutb6cb7f92015-07-18 03:34:22 +02001311 const u32 rank_end = all_ranks ?
1312 RW_MGR_MEM_NUMBER_OF_RANKS :
1313 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
1314 u32 r;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001315
1316 debug("%s:%d\n", __func__, __LINE__);
Marek Vasutb6cb7f92015-07-18 03:34:22 +02001317
Dinh Nguyen3da42852015-06-02 22:52:49 -05001318 for (r = rank_bgn; r < rank_end; r++) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05001319 /* set rank */
1320 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1321
1322 /* Load up a constant bursts */
Marek Vasut1273dd92015-07-12 21:05:08 +02001323 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001324
Marek Vasut1273dd92015-07-12 21:05:08 +02001325 writel(RW_MGR_GUARANTEED_WRITE_WAIT0,
1326 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001327
Marek Vasut1273dd92015-07-12 21:05:08 +02001328 writel(0x20, &sdr_rw_load_mgr_regs->load_cntr1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001329
Marek Vasut1273dd92015-07-12 21:05:08 +02001330 writel(RW_MGR_GUARANTEED_WRITE_WAIT1,
1331 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001332
Marek Vasut1273dd92015-07-12 21:05:08 +02001333 writel(0x04, &sdr_rw_load_mgr_regs->load_cntr2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001334
Marek Vasut1273dd92015-07-12 21:05:08 +02001335 writel(RW_MGR_GUARANTEED_WRITE_WAIT2,
1336 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001337
Marek Vasut1273dd92015-07-12 21:05:08 +02001338 writel(0x04, &sdr_rw_load_mgr_regs->load_cntr3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001339
Marek Vasut1273dd92015-07-12 21:05:08 +02001340 writel(RW_MGR_GUARANTEED_WRITE_WAIT3,
1341 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001342
Marek Vasut1273dd92015-07-12 21:05:08 +02001343 writel(RW_MGR_GUARANTEED_WRITE, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1344 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001345 }
1346
1347 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
1348}
1349
Marek Vasut783fcf52015-07-20 03:26:05 +02001350/**
1351 * rw_mgr_mem_calibrate_read_test() - Perform READ test on single rank
1352 * @rank_bgn: Rank number
1353 * @group: Read/Write group
1354 * @num_tries: Number of retries of the test
1355 * @all_correct: All bits must be correct in the mask
1356 * @bit_chk: Resulting bit mask after the test
1357 * @all_groups: Test all R/W groups
1358 * @all_ranks: Test all ranks
1359 *
1360 * Try a read and see if it returns correct data back. Test has dummy reads
1361 * inserted into the mix used to align DQS enable. Test has more thorough
1362 * checks than the regular read test.
Dinh Nguyen3da42852015-06-02 22:52:49 -05001363 */
Marek Vasut3cb8bf32015-07-19 07:48:58 +02001364static int
1365rw_mgr_mem_calibrate_read_test(const u32 rank_bgn, const u32 group,
1366 const u32 num_tries, const u32 all_correct,
1367 u32 *bit_chk,
1368 const u32 all_groups, const u32 all_ranks)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001369{
Marek Vasut3cb8bf32015-07-19 07:48:58 +02001370 const u32 rank_end = all_ranks ? RW_MGR_MEM_NUMBER_OF_RANKS :
Dinh Nguyen3da42852015-06-02 22:52:49 -05001371 (rank_bgn + NUM_RANKS_PER_SHADOW_REG);
Marek Vasut3cb8bf32015-07-19 07:48:58 +02001372 const u32 quick_read_mode =
1373 ((STATIC_CALIB_STEPS & CALIB_SKIP_DELAY_SWEEPS) &&
1374 ENABLE_SUPER_QUICK_CALIBRATION);
1375 u32 correct_mask_vg = param->read_correct_mask_vg;
1376 u32 tmp_bit_chk;
1377 u32 base_rw_mgr;
1378 u32 addr;
1379
1380 int r, vg, ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001381
1382 *bit_chk = param->read_correct_mask;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001383
1384 for (r = rank_bgn; r < rank_end; r++) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05001385 /* set rank */
1386 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_READ_WRITE);
1387
Marek Vasut1273dd92015-07-12 21:05:08 +02001388 writel(0x10, &sdr_rw_load_mgr_regs->load_cntr1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001389
Marek Vasut1273dd92015-07-12 21:05:08 +02001390 writel(RW_MGR_READ_B2B_WAIT1,
1391 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001392
Marek Vasut1273dd92015-07-12 21:05:08 +02001393 writel(0x10, &sdr_rw_load_mgr_regs->load_cntr2);
1394 writel(RW_MGR_READ_B2B_WAIT2,
1395 &sdr_rw_load_jump_mgr_regs->load_jump_add2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001396
Dinh Nguyen3da42852015-06-02 22:52:49 -05001397 if (quick_read_mode)
Marek Vasut1273dd92015-07-12 21:05:08 +02001398 writel(0x1, &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001399 /* need at least two (1+1) reads to capture failures */
1400 else if (all_groups)
Marek Vasut1273dd92015-07-12 21:05:08 +02001401 writel(0x06, &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001402 else
Marek Vasut1273dd92015-07-12 21:05:08 +02001403 writel(0x32, &sdr_rw_load_mgr_regs->load_cntr0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001404
Marek Vasut1273dd92015-07-12 21:05:08 +02001405 writel(RW_MGR_READ_B2B,
1406 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001407 if (all_groups)
1408 writel(RW_MGR_MEM_IF_READ_DQS_WIDTH *
1409 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1,
Marek Vasut1273dd92015-07-12 21:05:08 +02001410 &sdr_rw_load_mgr_regs->load_cntr3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001411 else
Marek Vasut1273dd92015-07-12 21:05:08 +02001412 writel(0x0, &sdr_rw_load_mgr_regs->load_cntr3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001413
Marek Vasut1273dd92015-07-12 21:05:08 +02001414 writel(RW_MGR_READ_B2B,
1415 &sdr_rw_load_jump_mgr_regs->load_jump_add3);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001416
1417 tmp_bit_chk = 0;
Marek Vasut7ce23bb2015-07-19 07:51:17 +02001418 for (vg = RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS - 1; vg >= 0;
1419 vg--) {
Marek Vasutba522c72015-07-19 07:57:28 +02001420 /* Reset the FIFOs to get pointers to known state. */
Marek Vasut1273dd92015-07-12 21:05:08 +02001421 writel(0, &phy_mgr_cmd->fifo_reset);
1422 writel(0, SDR_PHYGRP_RWMGRGRP_ADDRESS |
1423 RW_MGR_RESET_READ_DATAPATH_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001424
Marek Vasutba522c72015-07-19 07:57:28 +02001425 if (all_groups) {
1426 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1427 RW_MGR_RUN_ALL_GROUPS_OFFSET;
1428 } else {
1429 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS |
1430 RW_MGR_RUN_SINGLE_GROUP_OFFSET;
1431 }
Marek Vasutc4815f72015-07-12 19:03:33 +02001432
Marek Vasut17fdc912015-07-12 20:05:54 +02001433 writel(RW_MGR_READ_B2B, addr +
Dinh Nguyen3da42852015-06-02 22:52:49 -05001434 ((group * RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS +
1435 vg) << 2));
1436
Marek Vasut1273dd92015-07-12 21:05:08 +02001437 base_rw_mgr = readl(SDR_PHYGRP_RWMGRGRP_ADDRESS);
Marek Vasutba522c72015-07-19 07:57:28 +02001438 tmp_bit_chk <<= RW_MGR_MEM_DQ_PER_READ_DQS /
1439 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS;
1440 tmp_bit_chk |= correct_mask_vg & ~(base_rw_mgr);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001441 }
Marek Vasut7ce23bb2015-07-19 07:51:17 +02001442
Dinh Nguyen3da42852015-06-02 22:52:49 -05001443 *bit_chk &= tmp_bit_chk;
1444 }
1445
Marek Vasutc4815f72015-07-12 19:03:33 +02001446 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_RUN_SINGLE_GROUP_OFFSET;
Marek Vasut17fdc912015-07-12 20:05:54 +02001447 writel(RW_MGR_CLEAR_DQS_ENABLE, addr + (group << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05001448
Marek Vasut3853d652015-07-19 07:44:21 +02001449 set_rank_and_odt_mask(0, RW_MGR_ODT_MODE_OFF);
1450
Dinh Nguyen3da42852015-06-02 22:52:49 -05001451 if (all_correct) {
Marek Vasut3853d652015-07-19 07:44:21 +02001452 ret = (*bit_chk == param->read_correct_mask);
1453 debug_cond(DLEVEL == 2,
1454 "%s:%d read_test(%u,ALL,%u) => (%u == %u) => %i\n",
1455 __func__, __LINE__, group, all_groups, *bit_chk,
1456 param->read_correct_mask, ret);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001457 } else {
Marek Vasut3853d652015-07-19 07:44:21 +02001458 ret = (*bit_chk != 0x00);
1459 debug_cond(DLEVEL == 2,
1460 "%s:%d read_test(%u,ONE,%u) => (%u != %u) => %i\n",
1461 __func__, __LINE__, group, all_groups, *bit_chk,
1462 0, ret);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001463 }
Marek Vasut3853d652015-07-19 07:44:21 +02001464
1465 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001466}
1467
Marek Vasut96df6032015-07-19 07:35:36 +02001468/**
1469 * rw_mgr_mem_calibrate_read_test_all_ranks() - Perform READ test on all ranks
1470 * @grp: Read/Write group
1471 * @num_tries: Number of retries of the test
1472 * @all_correct: All bits must be correct in the mask
1473 * @all_groups: Test all R/W groups
1474 *
1475 * Perform a READ test across all memory ranks.
1476 */
1477static int
1478rw_mgr_mem_calibrate_read_test_all_ranks(const u32 grp, const u32 num_tries,
1479 const u32 all_correct,
1480 const u32 all_groups)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001481{
Marek Vasut96df6032015-07-19 07:35:36 +02001482 u32 bit_chk;
1483 return rw_mgr_mem_calibrate_read_test(0, grp, num_tries, all_correct,
1484 &bit_chk, all_groups, 1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001485}
1486
Marek Vasut60bb8a82015-07-19 06:25:27 +02001487/**
1488 * rw_mgr_incr_vfifo() - Increase VFIFO value
1489 * @grp: Read/Write group
Marek Vasut60bb8a82015-07-19 06:25:27 +02001490 *
1491 * Increase VFIFO value.
1492 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001493static void rw_mgr_incr_vfifo(const u32 grp)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001494{
Marek Vasut1273dd92015-07-12 21:05:08 +02001495 writel(grp, &phy_mgr_cmd->inc_vfifo_hard_phy);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001496}
1497
Marek Vasut60bb8a82015-07-19 06:25:27 +02001498/**
1499 * rw_mgr_decr_vfifo() - Decrease VFIFO value
1500 * @grp: Read/Write group
Marek Vasut60bb8a82015-07-19 06:25:27 +02001501 *
1502 * Decrease VFIFO value.
1503 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001504static void rw_mgr_decr_vfifo(const u32 grp)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001505{
Marek Vasut60bb8a82015-07-19 06:25:27 +02001506 u32 i;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001507
Marek Vasut60bb8a82015-07-19 06:25:27 +02001508 for (i = 0; i < VFIFO_SIZE - 1; i++)
Marek Vasut8c887b62015-07-19 06:37:51 +02001509 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001510}
1511
Marek Vasutd145ca92015-07-19 06:45:43 +02001512/**
1513 * find_vfifo_failing_read() - Push VFIFO to get a failing read
1514 * @grp: Read/Write group
1515 *
1516 * Push VFIFO until a failing read happens.
1517 */
1518static int find_vfifo_failing_read(const u32 grp)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001519{
Marek Vasut96df6032015-07-19 07:35:36 +02001520 u32 v, ret, fail_cnt = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001521
Marek Vasut8c887b62015-07-19 06:37:51 +02001522 for (v = 0; v < VFIFO_SIZE; v++) {
Marek Vasutd145ca92015-07-19 06:45:43 +02001523 debug_cond(DLEVEL == 2, "%s:%d: vfifo %u\n",
Dinh Nguyen3da42852015-06-02 22:52:49 -05001524 __func__, __LINE__, v);
Marek Vasutd145ca92015-07-19 06:45:43 +02001525 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
Marek Vasut96df6032015-07-19 07:35:36 +02001526 PASS_ONE_BIT, 0);
Marek Vasutd145ca92015-07-19 06:45:43 +02001527 if (!ret) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05001528 fail_cnt++;
1529
1530 if (fail_cnt == 2)
Marek Vasutd145ca92015-07-19 06:45:43 +02001531 return v;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001532 }
1533
Marek Vasutd145ca92015-07-19 06:45:43 +02001534 /* Fiddle with FIFO. */
Marek Vasut8c887b62015-07-19 06:37:51 +02001535 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001536 }
1537
Marek Vasutd145ca92015-07-19 06:45:43 +02001538 /* No failing read found! Something must have gone wrong. */
1539 debug_cond(DLEVEL == 2, "%s:%d: vfifo failed\n", __func__, __LINE__);
1540 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001541}
1542
Marek Vasut192d6f92015-07-19 05:26:49 +02001543/**
Marek Vasut52e8f212015-07-19 07:27:06 +02001544 * sdr_find_phase_delay() - Find DQS enable phase or delay
1545 * @working: If 1, look for working phase/delay, if 0, look for non-working
1546 * @delay: If 1, look for delay, if 0, look for phase
1547 * @grp: Read/Write group
1548 * @work: Working window position
1549 * @work_inc: Working window increment
1550 * @pd: DQS Phase/Delay Iterator
1551 *
1552 * Find working or non-working DQS enable phase setting.
1553 */
1554static int sdr_find_phase_delay(int working, int delay, const u32 grp,
1555 u32 *work, const u32 work_inc, u32 *pd)
1556{
1557 const u32 max = delay ? IO_DQS_EN_DELAY_MAX : IO_DQS_EN_PHASE_MAX;
Marek Vasut96df6032015-07-19 07:35:36 +02001558 u32 ret;
Marek Vasut52e8f212015-07-19 07:27:06 +02001559
1560 for (; *pd <= max; (*pd)++) {
1561 if (delay)
1562 scc_mgr_set_dqs_en_delay_all_ranks(grp, *pd);
1563 else
1564 scc_mgr_set_dqs_en_phase_all_ranks(grp, *pd);
1565
1566 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
Marek Vasut96df6032015-07-19 07:35:36 +02001567 PASS_ONE_BIT, 0);
Marek Vasut52e8f212015-07-19 07:27:06 +02001568 if (!working)
1569 ret = !ret;
1570
1571 if (ret)
1572 return 0;
1573
1574 if (work)
1575 *work += work_inc;
1576 }
1577
1578 return -EINVAL;
1579}
1580/**
Marek Vasut192d6f92015-07-19 05:26:49 +02001581 * sdr_find_phase() - Find DQS enable phase
1582 * @working: If 1, look for working phase, if 0, look for non-working phase
1583 * @grp: Read/Write group
Marek Vasut192d6f92015-07-19 05:26:49 +02001584 * @work: Working window position
1585 * @i: Iterator
1586 * @p: DQS Phase Iterator
Marek Vasut192d6f92015-07-19 05:26:49 +02001587 *
1588 * Find working or non-working DQS enable phase setting.
1589 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001590static int sdr_find_phase(int working, const u32 grp, u32 *work,
Marek Vasut86a39dc2015-07-19 05:35:40 +02001591 u32 *i, u32 *p)
Marek Vasut192d6f92015-07-19 05:26:49 +02001592{
Marek Vasut192d6f92015-07-19 05:26:49 +02001593 const u32 end = VFIFO_SIZE + (working ? 0 : 1);
Marek Vasut52e8f212015-07-19 07:27:06 +02001594 int ret;
Marek Vasut192d6f92015-07-19 05:26:49 +02001595
1596 for (; *i < end; (*i)++) {
1597 if (working)
1598 *p = 0;
1599
Marek Vasut52e8f212015-07-19 07:27:06 +02001600 ret = sdr_find_phase_delay(working, 0, grp, work,
1601 IO_DELAY_PER_OPA_TAP, p);
1602 if (!ret)
1603 return 0;
Marek Vasut192d6f92015-07-19 05:26:49 +02001604
1605 if (*p > IO_DQS_EN_PHASE_MAX) {
1606 /* Fiddle with FIFO. */
Marek Vasut8c887b62015-07-19 06:37:51 +02001607 rw_mgr_incr_vfifo(grp);
Marek Vasut192d6f92015-07-19 05:26:49 +02001608 if (!working)
1609 *p = 0;
1610 }
1611 }
1612
1613 return -EINVAL;
1614}
1615
Marek Vasut4c5e5842015-07-19 06:04:00 +02001616/**
1617 * sdr_working_phase() - Find working DQS enable phase
1618 * @grp: Read/Write group
1619 * @work_bgn: Working window start position
Marek Vasut4c5e5842015-07-19 06:04:00 +02001620 * @d: dtaps output value
1621 * @p: DQS Phase Iterator
1622 * @i: Iterator
1623 *
1624 * Find working DQS enable phase setting.
1625 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001626static int sdr_working_phase(const u32 grp, u32 *work_bgn, u32 *d,
Marek Vasut4c5e5842015-07-19 06:04:00 +02001627 u32 *p, u32 *i)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001628{
Marek Vasut35ee8672015-07-19 05:40:06 +02001629 const u32 dtaps_per_ptap = IO_DELAY_PER_OPA_TAP /
1630 IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
Marek Vasut192d6f92015-07-19 05:26:49 +02001631 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001632
Marek Vasut192d6f92015-07-19 05:26:49 +02001633 *work_bgn = 0;
1634
1635 for (*d = 0; *d <= dtaps_per_ptap; (*d)++) {
1636 *i = 0;
Marek Vasut521fe392015-07-19 04:34:12 +02001637 scc_mgr_set_dqs_en_delay_all_ranks(grp, *d);
Marek Vasut8c887b62015-07-19 06:37:51 +02001638 ret = sdr_find_phase(1, grp, work_bgn, i, p);
Marek Vasut192d6f92015-07-19 05:26:49 +02001639 if (!ret)
1640 return 0;
1641 *work_bgn += IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001642 }
1643
Marek Vasut38ed6922015-07-19 05:01:12 +02001644 /* Cannot find working solution */
Marek Vasut192d6f92015-07-19 05:26:49 +02001645 debug_cond(DLEVEL == 2, "%s:%d find_dqs_en_phase: no vfifo/ptap/dtap\n",
1646 __func__, __LINE__);
1647 return -EINVAL;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001648}
1649
Marek Vasut4c5e5842015-07-19 06:04:00 +02001650/**
1651 * sdr_backup_phase() - Find DQS enable backup phase
1652 * @grp: Read/Write group
1653 * @work_bgn: Working window start position
Marek Vasut4c5e5842015-07-19 06:04:00 +02001654 * @p: DQS Phase Iterator
1655 *
1656 * Find DQS enable backup phase setting.
1657 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001658static void sdr_backup_phase(const u32 grp, u32 *work_bgn, u32 *p)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001659{
Marek Vasut96df6032015-07-19 07:35:36 +02001660 u32 tmp_delay, d;
Marek Vasut4c5e5842015-07-19 06:04:00 +02001661 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001662
1663 /* Special case code for backing up a phase */
1664 if (*p == 0) {
1665 *p = IO_DQS_EN_PHASE_MAX;
Marek Vasut8c887b62015-07-19 06:37:51 +02001666 rw_mgr_decr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001667 } else {
1668 (*p)--;
1669 }
1670 tmp_delay = *work_bgn - IO_DELAY_PER_OPA_TAP;
Marek Vasut521fe392015-07-19 04:34:12 +02001671 scc_mgr_set_dqs_en_phase_all_ranks(grp, *p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001672
Marek Vasut49891df62015-07-19 05:48:30 +02001673 for (d = 0; d <= IO_DQS_EN_DELAY_MAX && tmp_delay < *work_bgn; d++) {
1674 scc_mgr_set_dqs_en_delay_all_ranks(grp, d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001675
Marek Vasut4c5e5842015-07-19 06:04:00 +02001676 ret = rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
Marek Vasut96df6032015-07-19 07:35:36 +02001677 PASS_ONE_BIT, 0);
Marek Vasut4c5e5842015-07-19 06:04:00 +02001678 if (ret) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05001679 *work_bgn = tmp_delay;
1680 break;
1681 }
Marek Vasut49891df62015-07-19 05:48:30 +02001682
1683 tmp_delay += IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001684 }
1685
Marek Vasut4c5e5842015-07-19 06:04:00 +02001686 /* Restore VFIFO to old state before we decremented it (if needed). */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001687 (*p)++;
1688 if (*p > IO_DQS_EN_PHASE_MAX) {
1689 *p = 0;
Marek Vasut8c887b62015-07-19 06:37:51 +02001690 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001691 }
1692
Marek Vasut521fe392015-07-19 04:34:12 +02001693 scc_mgr_set_dqs_en_delay_all_ranks(grp, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001694}
1695
Marek Vasut4c5e5842015-07-19 06:04:00 +02001696/**
1697 * sdr_nonworking_phase() - Find non-working DQS enable phase
1698 * @grp: Read/Write group
1699 * @work_end: Working window end position
Marek Vasut4c5e5842015-07-19 06:04:00 +02001700 * @p: DQS Phase Iterator
1701 * @i: Iterator
1702 *
1703 * Find non-working DQS enable phase setting.
1704 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001705static int sdr_nonworking_phase(const u32 grp, u32 *work_end, u32 *p, u32 *i)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001706{
Marek Vasut192d6f92015-07-19 05:26:49 +02001707 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001708
1709 (*p)++;
1710 *work_end += IO_DELAY_PER_OPA_TAP;
1711 if (*p > IO_DQS_EN_PHASE_MAX) {
Marek Vasut192d6f92015-07-19 05:26:49 +02001712 /* Fiddle with FIFO. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001713 *p = 0;
Marek Vasut8c887b62015-07-19 06:37:51 +02001714 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001715 }
1716
Marek Vasut8c887b62015-07-19 06:37:51 +02001717 ret = sdr_find_phase(0, grp, work_end, i, p);
Marek Vasut192d6f92015-07-19 05:26:49 +02001718 if (ret) {
1719 /* Cannot see edge of failing read. */
1720 debug_cond(DLEVEL == 2, "%s:%d: end: failed\n",
1721 __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001722 }
1723
Marek Vasut192d6f92015-07-19 05:26:49 +02001724 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001725}
1726
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001727/**
1728 * sdr_find_window_center() - Find center of the working DQS window.
1729 * @grp: Read/Write group
1730 * @work_bgn: First working settings
1731 * @work_end: Last working settings
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001732 *
1733 * Find center of the working DQS enable window.
1734 */
1735static int sdr_find_window_center(const u32 grp, const u32 work_bgn,
Marek Vasut8c887b62015-07-19 06:37:51 +02001736 const u32 work_end)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001737{
Marek Vasut96df6032015-07-19 07:35:36 +02001738 u32 work_mid;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001739 int tmp_delay = 0;
Marek Vasut28fd2422015-07-19 02:56:59 +02001740 int i, p, d;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001741
Marek Vasut28fd2422015-07-19 02:56:59 +02001742 work_mid = (work_bgn + work_end) / 2;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001743
1744 debug_cond(DLEVEL == 2, "work_bgn=%d work_end=%d work_mid=%d\n",
Marek Vasut28fd2422015-07-19 02:56:59 +02001745 work_bgn, work_end, work_mid);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001746 /* Get the middle delay to be less than a VFIFO delay */
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001747 tmp_delay = (IO_DQS_EN_PHASE_MAX + 1) * IO_DELAY_PER_OPA_TAP;
Marek Vasut28fd2422015-07-19 02:56:59 +02001748
Dinh Nguyen3da42852015-06-02 22:52:49 -05001749 debug_cond(DLEVEL == 2, "vfifo ptap delay %d\n", tmp_delay);
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001750 work_mid %= tmp_delay;
Marek Vasut28fd2422015-07-19 02:56:59 +02001751 debug_cond(DLEVEL == 2, "new work_mid %d\n", work_mid);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001752
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001753 tmp_delay = rounddown(work_mid, IO_DELAY_PER_OPA_TAP);
1754 if (tmp_delay > IO_DQS_EN_PHASE_MAX * IO_DELAY_PER_OPA_TAP)
1755 tmp_delay = IO_DQS_EN_PHASE_MAX * IO_DELAY_PER_OPA_TAP;
1756 p = tmp_delay / IO_DELAY_PER_OPA_TAP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001757
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001758 debug_cond(DLEVEL == 2, "new p %d, tmp_delay=%d\n", p, tmp_delay);
1759
1760 d = DIV_ROUND_UP(work_mid - tmp_delay, IO_DELAY_PER_DQS_EN_DCHAIN_TAP);
1761 if (d > IO_DQS_EN_DELAY_MAX)
1762 d = IO_DQS_EN_DELAY_MAX;
1763 tmp_delay += d * IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
1764
Marek Vasut28fd2422015-07-19 02:56:59 +02001765 debug_cond(DLEVEL == 2, "new d %d, tmp_delay=%d\n", d, tmp_delay);
1766
Marek Vasutcbb0b7e2015-07-19 04:04:33 +02001767 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
Marek Vasut28fd2422015-07-19 02:56:59 +02001768 scc_mgr_set_dqs_en_delay_all_ranks(grp, d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001769
1770 /*
1771 * push vfifo until we can successfully calibrate. We can do this
1772 * because the largest possible margin in 1 VFIFO cycle.
1773 */
1774 for (i = 0; i < VFIFO_SIZE; i++) {
Marek Vasut8c887b62015-07-19 06:37:51 +02001775 debug_cond(DLEVEL == 2, "find_dqs_en_phase: center\n");
Marek Vasut28fd2422015-07-19 02:56:59 +02001776 if (rw_mgr_mem_calibrate_read_test_all_ranks(grp, 1,
Dinh Nguyen3da42852015-06-02 22:52:49 -05001777 PASS_ONE_BIT,
Marek Vasut96df6032015-07-19 07:35:36 +02001778 0)) {
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001779 debug_cond(DLEVEL == 2,
Marek Vasut8c887b62015-07-19 06:37:51 +02001780 "%s:%d center: found: ptap=%u dtap=%u\n",
1781 __func__, __LINE__, p, d);
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001782 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001783 }
1784
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001785 /* Fiddle with FIFO. */
Marek Vasut8c887b62015-07-19 06:37:51 +02001786 rw_mgr_incr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001787 }
1788
Marek Vasut0a13a0f2015-07-19 04:14:32 +02001789 debug_cond(DLEVEL == 2, "%s:%d center: failed.\n",
1790 __func__, __LINE__);
1791 return -EINVAL;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001792}
1793
Marek Vasut33756892015-07-20 09:11:09 +02001794/**
1795 * rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase() - Find a good DQS enable to use
1796 * @grp: Read/Write Group
1797 *
1798 * Find a good DQS enable to use.
1799 */
Marek Vasut914546e2015-07-20 09:20:42 +02001800static int rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(const u32 grp)
Dinh Nguyen3da42852015-06-02 22:52:49 -05001801{
Marek Vasut57355402015-07-20 09:20:20 +02001802 u32 d, p, i;
1803 u32 dtaps_per_ptap;
1804 u32 work_bgn, work_end;
1805 u32 found_passing_read, found_failing_read, initial_failing_dtap;
1806 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001807
1808 debug("%s:%d %u\n", __func__, __LINE__, grp);
1809
1810 reg_file_set_sub_stage(CAL_SUBSTAGE_VFIFO_CENTER);
1811
1812 scc_mgr_set_dqs_en_delay_all_ranks(grp, 0);
1813 scc_mgr_set_dqs_en_phase_all_ranks(grp, 0);
1814
Marek Vasut2f3589c2015-07-19 02:42:21 +02001815 /* Step 0: Determine number of delay taps for each phase tap. */
1816 dtaps_per_ptap = IO_DELAY_PER_OPA_TAP / IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001817
Marek Vasut2f3589c2015-07-19 02:42:21 +02001818 /* Step 1: First push vfifo until we get a failing read. */
Marek Vasutd145ca92015-07-19 06:45:43 +02001819 find_vfifo_failing_read(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001820
Marek Vasut2f3589c2015-07-19 02:42:21 +02001821 /* Step 2: Find first working phase, increment in ptaps. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001822 work_bgn = 0;
Marek Vasut914546e2015-07-20 09:20:42 +02001823 ret = sdr_working_phase(grp, &work_bgn, &d, &p, &i);
1824 if (ret)
1825 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001826
1827 work_end = work_bgn;
1828
1829 /*
Marek Vasut2f3589c2015-07-19 02:42:21 +02001830 * If d is 0 then the working window covers a phase tap and we can
1831 * follow the old procedure. Otherwise, we've found the beginning
Dinh Nguyen3da42852015-06-02 22:52:49 -05001832 * and we need to increment the dtaps until we find the end.
1833 */
1834 if (d == 0) {
Marek Vasut2f3589c2015-07-19 02:42:21 +02001835 /*
1836 * Step 3a: If we have room, back off by one and
1837 * increment in dtaps.
1838 */
Marek Vasut8c887b62015-07-19 06:37:51 +02001839 sdr_backup_phase(grp, &work_bgn, &p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001840
Marek Vasut2f3589c2015-07-19 02:42:21 +02001841 /*
1842 * Step 4a: go forward from working phase to non working
1843 * phase, increment in ptaps.
1844 */
Marek Vasut914546e2015-07-20 09:20:42 +02001845 ret = sdr_nonworking_phase(grp, &work_end, &p, &i);
1846 if (ret)
1847 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001848
Marek Vasut2f3589c2015-07-19 02:42:21 +02001849 /* Step 5a: Back off one from last, increment in dtaps. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05001850
1851 /* Special case code for backing up a phase */
1852 if (p == 0) {
1853 p = IO_DQS_EN_PHASE_MAX;
Marek Vasut8c887b62015-07-19 06:37:51 +02001854 rw_mgr_decr_vfifo(grp);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001855 } else {
1856 p = p - 1;
1857 }
1858
1859 work_end -= IO_DELAY_PER_OPA_TAP;
1860 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
1861
Dinh Nguyen3da42852015-06-02 22:52:49 -05001862 d = 0;
1863
Marek Vasut2f3589c2015-07-19 02:42:21 +02001864 debug_cond(DLEVEL == 2, "%s:%d p: ptap=%u\n",
1865 __func__, __LINE__, p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001866 }
1867
Marek Vasut2f3589c2015-07-19 02:42:21 +02001868 /* The dtap increment to find the failing edge is done here. */
Marek Vasut52e8f212015-07-19 07:27:06 +02001869 sdr_find_phase_delay(0, 1, grp, &work_end,
1870 IO_DELAY_PER_DQS_EN_DCHAIN_TAP, &d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001871
1872 /* Go back to working dtap */
1873 if (d != 0)
1874 work_end -= IO_DELAY_PER_DQS_EN_DCHAIN_TAP;
1875
Marek Vasut2f3589c2015-07-19 02:42:21 +02001876 debug_cond(DLEVEL == 2,
1877 "%s:%d p/d: ptap=%u dtap=%u end=%u\n",
1878 __func__, __LINE__, p, d - 1, work_end);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001879
1880 if (work_end < work_bgn) {
1881 /* nil range */
Marek Vasut2f3589c2015-07-19 02:42:21 +02001882 debug_cond(DLEVEL == 2, "%s:%d end-2: failed\n",
1883 __func__, __LINE__);
Marek Vasut914546e2015-07-20 09:20:42 +02001884 return -EINVAL;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001885 }
1886
Marek Vasut2f3589c2015-07-19 02:42:21 +02001887 debug_cond(DLEVEL == 2, "%s:%d found range [%u,%u]\n",
Dinh Nguyen3da42852015-06-02 22:52:49 -05001888 __func__, __LINE__, work_bgn, work_end);
1889
Dinh Nguyen3da42852015-06-02 22:52:49 -05001890 /*
Marek Vasut2f3589c2015-07-19 02:42:21 +02001891 * We need to calculate the number of dtaps that equal a ptap.
1892 * To do that we'll back up a ptap and re-find the edge of the
1893 * window using dtaps
Dinh Nguyen3da42852015-06-02 22:52:49 -05001894 */
Marek Vasut2f3589c2015-07-19 02:42:21 +02001895 debug_cond(DLEVEL == 2, "%s:%d calculate dtaps_per_ptap for tracking\n",
1896 __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001897
1898 /* Special case code for backing up a phase */
1899 if (p == 0) {
1900 p = IO_DQS_EN_PHASE_MAX;
Marek Vasut8c887b62015-07-19 06:37:51 +02001901 rw_mgr_decr_vfifo(grp);
Marek Vasut2f3589c2015-07-19 02:42:21 +02001902 debug_cond(DLEVEL == 2, "%s:%d backedup cycle/phase: p=%u\n",
1903 __func__, __LINE__, p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001904 } else {
1905 p = p - 1;
Marek Vasut2f3589c2015-07-19 02:42:21 +02001906 debug_cond(DLEVEL == 2, "%s:%d backedup phase only: p=%u",
1907 __func__, __LINE__, p);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001908 }
1909
1910 scc_mgr_set_dqs_en_phase_all_ranks(grp, p);
1911
1912 /*
1913 * Increase dtap until we first see a passing read (in case the
Marek Vasut2f3589c2015-07-19 02:42:21 +02001914 * window is smaller than a ptap), and then a failing read to
1915 * mark the edge of the window again.
Dinh Nguyen3da42852015-06-02 22:52:49 -05001916 */
1917
Marek Vasut2f3589c2015-07-19 02:42:21 +02001918 /* Find a passing read. */
1919 debug_cond(DLEVEL == 2, "%s:%d find passing read\n",
Dinh Nguyen3da42852015-06-02 22:52:49 -05001920 __func__, __LINE__);
Marek Vasut52e8f212015-07-19 07:27:06 +02001921
Dinh Nguyen3da42852015-06-02 22:52:49 -05001922 initial_failing_dtap = d;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001923
Marek Vasut52e8f212015-07-19 07:27:06 +02001924 found_passing_read = !sdr_find_phase_delay(1, 1, grp, NULL, 0, &d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001925 if (found_passing_read) {
Marek Vasut2f3589c2015-07-19 02:42:21 +02001926 /* Find a failing read. */
1927 debug_cond(DLEVEL == 2, "%s:%d find failing read\n",
1928 __func__, __LINE__);
Marek Vasut52e8f212015-07-19 07:27:06 +02001929 d++;
1930 found_failing_read = !sdr_find_phase_delay(0, 1, grp, NULL, 0,
1931 &d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001932 } else {
Marek Vasut2f3589c2015-07-19 02:42:21 +02001933 debug_cond(DLEVEL == 1,
1934 "%s:%d failed to calculate dtaps per ptap. Fall back on static value\n",
1935 __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001936 }
1937
1938 /*
1939 * The dynamically calculated dtaps_per_ptap is only valid if we
1940 * found a passing/failing read. If we didn't, it means d hit the max
1941 * (IO_DQS_EN_DELAY_MAX). Otherwise, dtaps_per_ptap retains its
1942 * statically calculated value.
1943 */
1944 if (found_passing_read && found_failing_read)
1945 dtaps_per_ptap = d - initial_failing_dtap;
1946
Marek Vasut1273dd92015-07-12 21:05:08 +02001947 writel(dtaps_per_ptap, &sdr_reg_file->dtaps_per_ptap);
Marek Vasut2f3589c2015-07-19 02:42:21 +02001948 debug_cond(DLEVEL == 2, "%s:%d dtaps_per_ptap=%u - %u = %u",
1949 __func__, __LINE__, d, initial_failing_dtap, dtaps_per_ptap);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001950
Marek Vasut2f3589c2015-07-19 02:42:21 +02001951 /* Step 6: Find the centre of the window. */
Marek Vasut914546e2015-07-20 09:20:42 +02001952 ret = sdr_find_window_center(grp, work_bgn, work_end);
Dinh Nguyen3da42852015-06-02 22:52:49 -05001953
Marek Vasut914546e2015-07-20 09:20:42 +02001954 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05001955}
1956
Marek Vasutc4907892015-07-13 02:11:02 +02001957/**
Marek Vasut901dc362015-07-13 02:48:34 +02001958 * search_stop_check() - Check if the detected edge is valid
1959 * @write: Perform read (Stage 2) or write (Stage 3) calibration
1960 * @d: DQS delay
1961 * @rank_bgn: Rank number
1962 * @write_group: Write Group
1963 * @read_group: Read Group
1964 * @bit_chk: Resulting bit mask after the test
1965 * @sticky_bit_chk: Resulting sticky bit mask after the test
1966 * @use_read_test: Perform read test
1967 *
1968 * Test if the found edge is valid.
1969 */
1970static u32 search_stop_check(const int write, const int d, const int rank_bgn,
1971 const u32 write_group, const u32 read_group,
1972 u32 *bit_chk, u32 *sticky_bit_chk,
1973 const u32 use_read_test)
1974{
1975 const u32 ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
1976 RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
1977 const u32 correct_mask = write ? param->write_correct_mask :
1978 param->read_correct_mask;
1979 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
1980 RW_MGR_MEM_DQ_PER_READ_DQS;
1981 u32 ret;
1982 /*
1983 * Stop searching when the read test doesn't pass AND when
1984 * we've seen a passing read on every bit.
1985 */
1986 if (write) { /* WRITE-ONLY */
1987 ret = !rw_mgr_mem_calibrate_write_test(rank_bgn, write_group,
1988 0, PASS_ONE_BIT,
1989 bit_chk, 0);
1990 } else if (use_read_test) { /* READ-ONLY */
1991 ret = !rw_mgr_mem_calibrate_read_test(rank_bgn, read_group,
1992 NUM_READ_PB_TESTS,
1993 PASS_ONE_BIT, bit_chk,
1994 0, 0);
1995 } else { /* READ-ONLY */
1996 rw_mgr_mem_calibrate_write_test(rank_bgn, write_group, 0,
1997 PASS_ONE_BIT, bit_chk, 0);
1998 *bit_chk = *bit_chk >> (per_dqs *
1999 (read_group - (write_group * ratio)));
2000 ret = (*bit_chk == 0);
2001 }
2002 *sticky_bit_chk = *sticky_bit_chk | *bit_chk;
2003 ret = ret && (*sticky_bit_chk == correct_mask);
2004 debug_cond(DLEVEL == 2,
2005 "%s:%d center(left): dtap=%u => %u == %u && %u",
2006 __func__, __LINE__, d,
2007 *sticky_bit_chk, correct_mask, ret);
2008 return ret;
2009}
2010
2011/**
Marek Vasut71120772015-07-13 02:38:15 +02002012 * search_left_edge() - Find left edge of DQ/DQS working phase
2013 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2014 * @rank_bgn: Rank number
2015 * @write_group: Write Group
2016 * @read_group: Read Group
2017 * @test_bgn: Rank number to begin the test
Marek Vasut71120772015-07-13 02:38:15 +02002018 * @sticky_bit_chk: Resulting sticky bit mask after the test
2019 * @left_edge: Left edge of the DQ/DQS phase
2020 * @right_edge: Right edge of the DQ/DQS phase
2021 * @use_read_test: Perform read test
2022 *
2023 * Find left edge of DQ/DQS working phase.
2024 */
2025static void search_left_edge(const int write, const int rank_bgn,
2026 const u32 write_group, const u32 read_group, const u32 test_bgn,
Marek Vasut0c4be192015-07-18 20:34:00 +02002027 u32 *sticky_bit_chk,
Marek Vasut71120772015-07-13 02:38:15 +02002028 int *left_edge, int *right_edge, const u32 use_read_test)
2029{
Marek Vasut71120772015-07-13 02:38:15 +02002030 const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
2031 const u32 dqs_max = write ? IO_IO_OUT1_DELAY_MAX : IO_DQS_IN_DELAY_MAX;
2032 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2033 RW_MGR_MEM_DQ_PER_READ_DQS;
Marek Vasut0c4be192015-07-18 20:34:00 +02002034 u32 stop, bit_chk;
Marek Vasut71120772015-07-13 02:38:15 +02002035 int i, d;
2036
2037 for (d = 0; d <= dqs_max; d++) {
2038 if (write)
2039 scc_mgr_apply_group_dq_out1_delay(d);
2040 else
2041 scc_mgr_apply_group_dq_in_delay(test_bgn, d);
2042
2043 writel(0, &sdr_scc_mgr->update);
2044
Marek Vasut901dc362015-07-13 02:48:34 +02002045 stop = search_stop_check(write, d, rank_bgn, write_group,
Marek Vasut0c4be192015-07-18 20:34:00 +02002046 read_group, &bit_chk, sticky_bit_chk,
Marek Vasut901dc362015-07-13 02:48:34 +02002047 use_read_test);
Marek Vasut71120772015-07-13 02:38:15 +02002048 if (stop == 1)
2049 break;
2050
2051 /* stop != 1 */
2052 for (i = 0; i < per_dqs; i++) {
Marek Vasut0c4be192015-07-18 20:34:00 +02002053 if (bit_chk & 1) {
Marek Vasut71120772015-07-13 02:38:15 +02002054 /*
2055 * Remember a passing test as
2056 * the left_edge.
2057 */
2058 left_edge[i] = d;
2059 } else {
2060 /*
2061 * If a left edge has not been seen
2062 * yet, then a future passing test
2063 * will mark this edge as the right
2064 * edge.
2065 */
2066 if (left_edge[i] == delay_max + 1)
2067 right_edge[i] = -(d + 1);
2068 }
Marek Vasut0c4be192015-07-18 20:34:00 +02002069 bit_chk >>= 1;
Marek Vasut71120772015-07-13 02:38:15 +02002070 }
2071 }
2072
2073 /* Reset DQ delay chains to 0 */
2074 if (write)
2075 scc_mgr_apply_group_dq_out1_delay(0);
2076 else
2077 scc_mgr_apply_group_dq_in_delay(test_bgn, 0);
2078
2079 *sticky_bit_chk = 0;
2080 for (i = per_dqs - 1; i >= 0; i--) {
2081 debug_cond(DLEVEL == 2,
2082 "%s:%d vfifo_center: left_edge[%u]: %d right_edge[%u]: %d\n",
2083 __func__, __LINE__, i, left_edge[i],
2084 i, right_edge[i]);
2085
2086 /*
2087 * Check for cases where we haven't found the left edge,
2088 * which makes our assignment of the the right edge invalid.
2089 * Reset it to the illegal value.
2090 */
2091 if ((left_edge[i] == delay_max + 1) &&
2092 (right_edge[i] != delay_max + 1)) {
2093 right_edge[i] = delay_max + 1;
2094 debug_cond(DLEVEL == 2,
2095 "%s:%d vfifo_center: reset right_edge[%u]: %d\n",
2096 __func__, __LINE__, i, right_edge[i]);
2097 }
2098
2099 /*
2100 * Reset sticky bit
2101 * READ: except for bits where we have seen both
2102 * the left and right edge.
2103 * WRITE: except for bits where we have seen the
2104 * left edge.
2105 */
2106 *sticky_bit_chk <<= 1;
2107 if (write) {
2108 if (left_edge[i] != delay_max + 1)
2109 *sticky_bit_chk |= 1;
2110 } else {
2111 if ((left_edge[i] != delay_max + 1) &&
2112 (right_edge[i] != delay_max + 1))
2113 *sticky_bit_chk |= 1;
2114 }
2115 }
2116
2117
2118}
2119
2120/**
Marek Vasutc4907892015-07-13 02:11:02 +02002121 * search_right_edge() - Find right edge of DQ/DQS working phase
2122 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2123 * @rank_bgn: Rank number
2124 * @write_group: Write Group
2125 * @read_group: Read Group
2126 * @start_dqs: DQS start phase
2127 * @start_dqs_en: DQS enable start phase
Marek Vasutc4907892015-07-13 02:11:02 +02002128 * @sticky_bit_chk: Resulting sticky bit mask after the test
2129 * @left_edge: Left edge of the DQ/DQS phase
2130 * @right_edge: Right edge of the DQ/DQS phase
2131 * @use_read_test: Perform read test
2132 *
2133 * Find right edge of DQ/DQS working phase.
2134 */
2135static int search_right_edge(const int write, const int rank_bgn,
2136 const u32 write_group, const u32 read_group,
2137 const int start_dqs, const int start_dqs_en,
Marek Vasut0c4be192015-07-18 20:34:00 +02002138 u32 *sticky_bit_chk,
Marek Vasutc4907892015-07-13 02:11:02 +02002139 int *left_edge, int *right_edge, const u32 use_read_test)
2140{
Marek Vasutc4907892015-07-13 02:11:02 +02002141 const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
2142 const u32 dqs_max = write ? IO_IO_OUT1_DELAY_MAX : IO_DQS_IN_DELAY_MAX;
2143 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2144 RW_MGR_MEM_DQ_PER_READ_DQS;
Marek Vasut0c4be192015-07-18 20:34:00 +02002145 u32 stop, bit_chk;
Marek Vasutc4907892015-07-13 02:11:02 +02002146 int i, d;
2147
2148 for (d = 0; d <= dqs_max - start_dqs; d++) {
2149 if (write) { /* WRITE-ONLY */
2150 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group,
2151 d + start_dqs);
2152 } else { /* READ-ONLY */
2153 scc_mgr_set_dqs_bus_in_delay(read_group, d + start_dqs);
2154 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
2155 uint32_t delay = d + start_dqs_en;
2156 if (delay > IO_DQS_EN_DELAY_MAX)
2157 delay = IO_DQS_EN_DELAY_MAX;
2158 scc_mgr_set_dqs_en_delay(read_group, delay);
2159 }
2160 scc_mgr_load_dqs(read_group);
2161 }
2162
2163 writel(0, &sdr_scc_mgr->update);
2164
Marek Vasut901dc362015-07-13 02:48:34 +02002165 stop = search_stop_check(write, d, rank_bgn, write_group,
Marek Vasut0c4be192015-07-18 20:34:00 +02002166 read_group, &bit_chk, sticky_bit_chk,
Marek Vasut901dc362015-07-13 02:48:34 +02002167 use_read_test);
Marek Vasutc4907892015-07-13 02:11:02 +02002168 if (stop == 1) {
2169 if (write && (d == 0)) { /* WRITE-ONLY */
2170 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
2171 /*
2172 * d = 0 failed, but it passed when
2173 * testing the left edge, so it must be
2174 * marginal, set it to -1
2175 */
2176 if (right_edge[i] == delay_max + 1 &&
2177 left_edge[i] != delay_max + 1)
2178 right_edge[i] = -1;
2179 }
2180 }
2181 break;
2182 }
2183
2184 /* stop != 1 */
2185 for (i = 0; i < per_dqs; i++) {
Marek Vasut0c4be192015-07-18 20:34:00 +02002186 if (bit_chk & 1) {
Marek Vasutc4907892015-07-13 02:11:02 +02002187 /*
2188 * Remember a passing test as
2189 * the right_edge.
2190 */
2191 right_edge[i] = d;
2192 } else {
2193 if (d != 0) {
2194 /*
2195 * If a right edge has not
2196 * been seen yet, then a future
2197 * passing test will mark this
2198 * edge as the left edge.
2199 */
2200 if (right_edge[i] == delay_max + 1)
2201 left_edge[i] = -(d + 1);
2202 } else {
2203 /*
2204 * d = 0 failed, but it passed
2205 * when testing the left edge,
2206 * so it must be marginal, set
2207 * it to -1
2208 */
2209 if (right_edge[i] == delay_max + 1 &&
2210 left_edge[i] != delay_max + 1)
2211 right_edge[i] = -1;
2212 /*
2213 * If a right edge has not been
2214 * seen yet, then a future
2215 * passing test will mark this
2216 * edge as the left edge.
2217 */
2218 else if (right_edge[i] == delay_max + 1)
2219 left_edge[i] = -(d + 1);
2220 }
2221 }
2222
2223 debug_cond(DLEVEL == 2, "%s:%d center[r,d=%u]: ",
2224 __func__, __LINE__, d);
2225 debug_cond(DLEVEL == 2,
2226 "bit_chk_test=%i left_edge[%u]: %d ",
Marek Vasut0c4be192015-07-18 20:34:00 +02002227 bit_chk & 1, i, left_edge[i]);
Marek Vasutc4907892015-07-13 02:11:02 +02002228 debug_cond(DLEVEL == 2, "right_edge[%u]: %d\n", i,
2229 right_edge[i]);
Marek Vasut0c4be192015-07-18 20:34:00 +02002230 bit_chk >>= 1;
Marek Vasutc4907892015-07-13 02:11:02 +02002231 }
2232 }
2233
2234 /* Check that all bits have a window */
2235 for (i = 0; i < per_dqs; i++) {
2236 debug_cond(DLEVEL == 2,
2237 "%s:%d write_center: left_edge[%u]: %d right_edge[%u]: %d",
2238 __func__, __LINE__, i, left_edge[i],
2239 i, right_edge[i]);
2240 if ((left_edge[i] == dqs_max + 1) ||
2241 (right_edge[i] == dqs_max + 1))
2242 return i + 1; /* FIXME: If we fail, retval > 0 */
2243 }
2244
2245 return 0;
2246}
2247
Marek Vasutafb3eb82015-07-18 19:18:06 +02002248/**
2249 * get_window_mid_index() - Find the best middle setting of DQ/DQS phase
2250 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2251 * @left_edge: Left edge of the DQ/DQS phase
2252 * @right_edge: Right edge of the DQ/DQS phase
2253 * @mid_min: Best DQ/DQS phase middle setting
2254 *
2255 * Find index and value of the middle of the DQ/DQS working phase.
2256 */
2257static int get_window_mid_index(const int write, int *left_edge,
2258 int *right_edge, int *mid_min)
2259{
2260 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2261 RW_MGR_MEM_DQ_PER_READ_DQS;
2262 int i, mid, min_index;
2263
2264 /* Find middle of window for each DQ bit */
2265 *mid_min = left_edge[0] - right_edge[0];
2266 min_index = 0;
2267 for (i = 1; i < per_dqs; i++) {
2268 mid = left_edge[i] - right_edge[i];
2269 if (mid < *mid_min) {
2270 *mid_min = mid;
2271 min_index = i;
2272 }
2273 }
2274
2275 /*
2276 * -mid_min/2 represents the amount that we need to move DQS.
2277 * If mid_min is odd and positive we'll need to add one to make
2278 * sure the rounding in further calculations is correct (always
2279 * bias to the right), so just add 1 for all positive values.
2280 */
2281 if (*mid_min > 0)
2282 (*mid_min)++;
2283 *mid_min = *mid_min / 2;
2284
2285 debug_cond(DLEVEL == 1, "%s:%d vfifo_center: *mid_min=%d (index=%u)\n",
2286 __func__, __LINE__, *mid_min, min_index);
2287 return min_index;
2288}
2289
Marek Vasutffb8b662015-07-18 19:46:26 +02002290/**
2291 * center_dq_windows() - Center the DQ/DQS windows
2292 * @write: Perform read (Stage 2) or write (Stage 3) calibration
2293 * @left_edge: Left edge of the DQ/DQS phase
2294 * @right_edge: Right edge of the DQ/DQS phase
2295 * @mid_min: Adjusted DQ/DQS phase middle setting
2296 * @orig_mid_min: Original DQ/DQS phase middle setting
2297 * @min_index: DQ/DQS phase middle setting index
2298 * @test_bgn: Rank number to begin the test
2299 * @dq_margin: Amount of shift for the DQ
2300 * @dqs_margin: Amount of shift for the DQS
2301 *
2302 * Align the DQ/DQS windows in each group.
2303 */
2304static void center_dq_windows(const int write, int *left_edge, int *right_edge,
2305 const int mid_min, const int orig_mid_min,
2306 const int min_index, const int test_bgn,
2307 int *dq_margin, int *dqs_margin)
2308{
2309 const u32 delay_max = write ? IO_IO_OUT1_DELAY_MAX : IO_IO_IN_DELAY_MAX;
2310 const u32 per_dqs = write ? RW_MGR_MEM_DQ_PER_WRITE_DQS :
2311 RW_MGR_MEM_DQ_PER_READ_DQS;
2312 const u32 delay_off = write ? SCC_MGR_IO_OUT1_DELAY_OFFSET :
2313 SCC_MGR_IO_IN_DELAY_OFFSET;
2314 const u32 addr = SDR_PHYGRP_SCCGRP_ADDRESS | delay_off;
2315
2316 u32 temp_dq_io_delay1, temp_dq_io_delay2;
2317 int shift_dq, i, p;
2318
2319 /* Initialize data for export structures */
2320 *dqs_margin = delay_max + 1;
2321 *dq_margin = delay_max + 1;
2322
2323 /* add delay to bring centre of all DQ windows to the same "level" */
2324 for (i = 0, p = test_bgn; i < per_dqs; i++, p++) {
2325 /* Use values before divide by 2 to reduce round off error */
2326 shift_dq = (left_edge[i] - right_edge[i] -
2327 (left_edge[min_index] - right_edge[min_index]))/2 +
2328 (orig_mid_min - mid_min);
2329
2330 debug_cond(DLEVEL == 2,
2331 "vfifo_center: before: shift_dq[%u]=%d\n",
2332 i, shift_dq);
2333
2334 temp_dq_io_delay1 = readl(addr + (p << 2));
2335 temp_dq_io_delay2 = readl(addr + (i << 2));
2336
2337 if (shift_dq + temp_dq_io_delay1 > delay_max)
2338 shift_dq = delay_max - temp_dq_io_delay2;
2339 else if (shift_dq + temp_dq_io_delay1 < 0)
2340 shift_dq = -temp_dq_io_delay1;
2341
2342 debug_cond(DLEVEL == 2,
2343 "vfifo_center: after: shift_dq[%u]=%d\n",
2344 i, shift_dq);
2345
2346 if (write)
2347 scc_mgr_set_dq_out1_delay(i, temp_dq_io_delay1 + shift_dq);
2348 else
2349 scc_mgr_set_dq_in_delay(p, temp_dq_io_delay1 + shift_dq);
2350
2351 scc_mgr_load_dq(p);
2352
2353 debug_cond(DLEVEL == 2,
2354 "vfifo_center: margin[%u]=[%d,%d]\n", i,
2355 left_edge[i] - shift_dq + (-mid_min),
2356 right_edge[i] + shift_dq - (-mid_min));
2357
2358 /* To determine values for export structures */
2359 if (left_edge[i] - shift_dq + (-mid_min) < *dq_margin)
2360 *dq_margin = left_edge[i] - shift_dq + (-mid_min);
2361
2362 if (right_edge[i] + shift_dq - (-mid_min) < *dqs_margin)
2363 *dqs_margin = right_edge[i] + shift_dq - (-mid_min);
2364 }
2365
2366}
2367
Marek Vasutac63b9a2015-07-21 04:27:32 +02002368/**
2369 * rw_mgr_mem_calibrate_vfifo_center() - Per-bit deskew DQ and centering
2370 * @rank_bgn: Rank number
2371 * @rw_group: Read/Write Group
2372 * @test_bgn: Rank at which the test begins
2373 * @use_read_test: Perform a read test
2374 * @update_fom: Update FOM
2375 *
2376 * Per-bit deskew DQ and centering.
2377 */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002378static int rw_mgr_mem_calibrate_vfifo_center(const u32 rank_bgn,
2379 const u32 rw_group, const u32 test_bgn,
2380 const int use_read_test, const int update_fom)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002381{
Marek Vasut5d6db442015-07-18 19:57:12 +02002382 const u32 addr =
2383 SDR_PHYGRP_SCCGRP_ADDRESS + SCC_MGR_DQS_IN_DELAY_OFFSET +
Marek Vasut0113c3e2015-07-18 20:42:27 +02002384 (rw_group << 2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002385 /*
2386 * Store these as signed since there are comparisons with
2387 * signed numbers.
2388 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05002389 uint32_t sticky_bit_chk;
2390 int32_t left_edge[RW_MGR_MEM_DQ_PER_READ_DQS];
2391 int32_t right_edge[RW_MGR_MEM_DQ_PER_READ_DQS];
Dinh Nguyen3da42852015-06-02 22:52:49 -05002392 int32_t orig_mid_min, mid_min;
Marek Vasut5d6db442015-07-18 19:57:12 +02002393 int32_t new_dqs, start_dqs, start_dqs_en, final_dqs_en;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002394 int32_t dq_margin, dqs_margin;
Marek Vasut5d6db442015-07-18 19:57:12 +02002395 int i, min_index;
Marek Vasutc4907892015-07-13 02:11:02 +02002396 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002397
Marek Vasut0113c3e2015-07-18 20:42:27 +02002398 debug("%s:%d: %u %u", __func__, __LINE__, rw_group, test_bgn);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002399
Marek Vasut5d6db442015-07-18 19:57:12 +02002400 start_dqs = readl(addr);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002401 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS)
Marek Vasut5d6db442015-07-18 19:57:12 +02002402 start_dqs_en = readl(addr - IO_DQS_EN_DELAY_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002403
2404 /* set the left and right edge of each bit to an illegal value */
2405 /* use (IO_IO_IN_DELAY_MAX + 1) as an illegal value */
2406 sticky_bit_chk = 0;
2407 for (i = 0; i < RW_MGR_MEM_DQ_PER_READ_DQS; i++) {
2408 left_edge[i] = IO_IO_IN_DELAY_MAX + 1;
2409 right_edge[i] = IO_IO_IN_DELAY_MAX + 1;
2410 }
2411
Dinh Nguyen3da42852015-06-02 22:52:49 -05002412 /* Search for the left edge of the window for each bit */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002413 search_left_edge(0, rank_bgn, rw_group, rw_group, test_bgn,
Marek Vasut0c4be192015-07-18 20:34:00 +02002414 &sticky_bit_chk,
Marek Vasut71120772015-07-13 02:38:15 +02002415 left_edge, right_edge, use_read_test);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002416
Marek Vasutf0712c32015-07-18 08:01:45 +02002417
Dinh Nguyen3da42852015-06-02 22:52:49 -05002418 /* Search for the right edge of the window for each bit */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002419 ret = search_right_edge(0, rank_bgn, rw_group, rw_group,
Marek Vasutc4907892015-07-13 02:11:02 +02002420 start_dqs, start_dqs_en,
Marek Vasut0c4be192015-07-18 20:34:00 +02002421 &sticky_bit_chk,
Marek Vasutc4907892015-07-13 02:11:02 +02002422 left_edge, right_edge, use_read_test);
2423 if (ret) {
2424 /*
2425 * Restore delay chain settings before letting the loop
2426 * in rw_mgr_mem_calibrate_vfifo to retry different
2427 * dqs/ck relationships.
2428 */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002429 scc_mgr_set_dqs_bus_in_delay(rw_group, start_dqs);
Marek Vasutc4907892015-07-13 02:11:02 +02002430 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS)
Marek Vasut0113c3e2015-07-18 20:42:27 +02002431 scc_mgr_set_dqs_en_delay(rw_group, start_dqs_en);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002432
Marek Vasut0113c3e2015-07-18 20:42:27 +02002433 scc_mgr_load_dqs(rw_group);
Marek Vasut1273dd92015-07-12 21:05:08 +02002434 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002435
Marek Vasutc4907892015-07-13 02:11:02 +02002436 debug_cond(DLEVEL == 1,
2437 "%s:%d vfifo_center: failed to find edge [%u]: %d %d",
2438 __func__, __LINE__, i, left_edge[i], right_edge[i]);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002439 if (use_read_test) {
Marek Vasut0113c3e2015-07-18 20:42:27 +02002440 set_failing_group_stage(rw_group *
Marek Vasutc4907892015-07-13 02:11:02 +02002441 RW_MGR_MEM_DQ_PER_READ_DQS + i,
2442 CAL_STAGE_VFIFO,
2443 CAL_SUBSTAGE_VFIFO_CENTER);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002444 } else {
Marek Vasut0113c3e2015-07-18 20:42:27 +02002445 set_failing_group_stage(rw_group *
Marek Vasutc4907892015-07-13 02:11:02 +02002446 RW_MGR_MEM_DQ_PER_READ_DQS + i,
2447 CAL_STAGE_VFIFO_AFTER_WRITES,
2448 CAL_SUBSTAGE_VFIFO_CENTER);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002449 }
Marek Vasut98668242015-07-18 20:44:28 +02002450 return -EIO;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002451 }
2452
Marek Vasutafb3eb82015-07-18 19:18:06 +02002453 min_index = get_window_mid_index(0, left_edge, right_edge, &mid_min);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002454
2455 /* Determine the amount we can change DQS (which is -mid_min) */
2456 orig_mid_min = mid_min;
2457 new_dqs = start_dqs - mid_min;
2458 if (new_dqs > IO_DQS_IN_DELAY_MAX)
2459 new_dqs = IO_DQS_IN_DELAY_MAX;
2460 else if (new_dqs < 0)
2461 new_dqs = 0;
2462
2463 mid_min = start_dqs - new_dqs;
2464 debug_cond(DLEVEL == 1, "vfifo_center: new mid_min=%d new_dqs=%d\n",
2465 mid_min, new_dqs);
2466
2467 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
2468 if (start_dqs_en - mid_min > IO_DQS_EN_DELAY_MAX)
2469 mid_min += start_dqs_en - mid_min - IO_DQS_EN_DELAY_MAX;
2470 else if (start_dqs_en - mid_min < 0)
2471 mid_min += start_dqs_en - mid_min;
2472 }
2473 new_dqs = start_dqs - mid_min;
2474
Marek Vasutf0712c32015-07-18 08:01:45 +02002475 debug_cond(DLEVEL == 1,
2476 "vfifo_center: start_dqs=%d start_dqs_en=%d new_dqs=%d mid_min=%d\n",
2477 start_dqs,
Dinh Nguyen3da42852015-06-02 22:52:49 -05002478 IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS ? start_dqs_en : -1,
2479 new_dqs, mid_min);
2480
Marek Vasutffb8b662015-07-18 19:46:26 +02002481 /* Add delay to bring centre of all DQ windows to the same "level". */
2482 center_dq_windows(0, left_edge, right_edge, mid_min, orig_mid_min,
2483 min_index, test_bgn, &dq_margin, &dqs_margin);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002484
Dinh Nguyen3da42852015-06-02 22:52:49 -05002485 /* Move DQS-en */
2486 if (IO_SHIFT_DQS_EN_WHEN_SHIFT_DQS) {
Marek Vasut5d6db442015-07-18 19:57:12 +02002487 final_dqs_en = start_dqs_en - mid_min;
Marek Vasut0113c3e2015-07-18 20:42:27 +02002488 scc_mgr_set_dqs_en_delay(rw_group, final_dqs_en);
2489 scc_mgr_load_dqs(rw_group);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002490 }
2491
2492 /* Move DQS */
Marek Vasut0113c3e2015-07-18 20:42:27 +02002493 scc_mgr_set_dqs_bus_in_delay(rw_group, new_dqs);
2494 scc_mgr_load_dqs(rw_group);
Marek Vasutf0712c32015-07-18 08:01:45 +02002495 debug_cond(DLEVEL == 2,
2496 "%s:%d vfifo_center: dq_margin=%d dqs_margin=%d",
2497 __func__, __LINE__, dq_margin, dqs_margin);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002498
2499 /*
2500 * Do not remove this line as it makes sure all of our decisions
2501 * have been applied. Apply the update bit.
2502 */
Marek Vasut1273dd92015-07-12 21:05:08 +02002503 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002504
Marek Vasut98668242015-07-18 20:44:28 +02002505 if ((dq_margin < 0) || (dqs_margin < 0))
2506 return -EINVAL;
2507
2508 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002509}
2510
Marek Vasutbce24ef2015-07-17 03:16:45 +02002511/**
Marek Vasut04372fb2015-07-18 02:46:56 +02002512 * rw_mgr_mem_calibrate_guaranteed_write() - Perform guaranteed write into the device
2513 * @rw_group: Read/Write Group
2514 * @phase: DQ/DQS phase
2515 *
2516 * Because initially no communication ca be reliably performed with the memory
2517 * device, the sequencer uses a guaranteed write mechanism to write data into
2518 * the memory device.
2519 */
2520static int rw_mgr_mem_calibrate_guaranteed_write(const u32 rw_group,
2521 const u32 phase)
2522{
Marek Vasut04372fb2015-07-18 02:46:56 +02002523 int ret;
2524
2525 /* Set a particular DQ/DQS phase. */
2526 scc_mgr_set_dqdqs_output_phase_all_ranks(rw_group, phase);
2527
2528 debug_cond(DLEVEL == 1, "%s:%d guaranteed write: g=%u p=%u\n",
2529 __func__, __LINE__, rw_group, phase);
2530
2531 /*
2532 * Altera EMI_RM 2015.05.04 :: Figure 1-25
2533 * Load up the patterns used by read calibration using the
2534 * current DQDQS phase.
2535 */
2536 rw_mgr_mem_calibrate_read_load_patterns(0, 1);
2537
2538 if (gbl->phy_debug_mode_flags & PHY_DEBUG_DISABLE_GUARANTEED_READ)
2539 return 0;
2540
2541 /*
2542 * Altera EMI_RM 2015.05.04 :: Figure 1-26
2543 * Back-to-Back reads of the patterns used for calibration.
2544 */
Marek Vasutd844c7d2015-07-18 03:55:07 +02002545 ret = rw_mgr_mem_calibrate_read_test_patterns(0, rw_group, 1);
2546 if (ret)
Marek Vasut04372fb2015-07-18 02:46:56 +02002547 debug_cond(DLEVEL == 1,
2548 "%s:%d Guaranteed read test failed: g=%u p=%u\n",
2549 __func__, __LINE__, rw_group, phase);
Marek Vasutd844c7d2015-07-18 03:55:07 +02002550 return ret;
Marek Vasut04372fb2015-07-18 02:46:56 +02002551}
2552
2553/**
Marek Vasutf09da112015-07-18 02:57:32 +02002554 * rw_mgr_mem_calibrate_dqs_enable_calibration() - DQS Enable Calibration
2555 * @rw_group: Read/Write Group
2556 * @test_bgn: Rank at which the test begins
2557 *
2558 * DQS enable calibration ensures reliable capture of the DQ signal without
2559 * glitches on the DQS line.
2560 */
2561static int rw_mgr_mem_calibrate_dqs_enable_calibration(const u32 rw_group,
2562 const u32 test_bgn)
2563{
Marek Vasutf09da112015-07-18 02:57:32 +02002564 /*
2565 * Altera EMI_RM 2015.05.04 :: Figure 1-27
2566 * DQS and DQS Eanble Signal Relationships.
2567 */
Marek Vasut28ea8272015-07-18 04:28:42 +02002568
2569 /* We start at zero, so have one less dq to devide among */
2570 const u32 delay_step = IO_IO_IN_DELAY_MAX /
2571 (RW_MGR_MEM_DQ_PER_READ_DQS - 1);
Marek Vasut914546e2015-07-20 09:20:42 +02002572 int ret;
Marek Vasut28ea8272015-07-18 04:28:42 +02002573 u32 i, p, d, r;
2574
2575 debug("%s:%d (%u,%u)\n", __func__, __LINE__, rw_group, test_bgn);
2576
2577 /* Try different dq_in_delays since the DQ path is shorter than DQS. */
2578 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
2579 r += NUM_RANKS_PER_SHADOW_REG) {
2580 for (i = 0, p = test_bgn, d = 0;
2581 i < RW_MGR_MEM_DQ_PER_READ_DQS;
2582 i++, p++, d += delay_step) {
2583 debug_cond(DLEVEL == 1,
2584 "%s:%d: g=%u r=%u i=%u p=%u d=%u\n",
2585 __func__, __LINE__, rw_group, r, i, p, d);
2586
2587 scc_mgr_set_dq_in_delay(p, d);
2588 scc_mgr_load_dq(p);
2589 }
2590
2591 writel(0, &sdr_scc_mgr->update);
2592 }
2593
2594 /*
2595 * Try rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase across different
2596 * dq_in_delay values
2597 */
Marek Vasut914546e2015-07-20 09:20:42 +02002598 ret = rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(rw_group);
Marek Vasut28ea8272015-07-18 04:28:42 +02002599
2600 debug_cond(DLEVEL == 1,
2601 "%s:%d: g=%u found=%u; Reseting delay chain to zero\n",
Marek Vasut914546e2015-07-20 09:20:42 +02002602 __func__, __LINE__, rw_group, !ret);
Marek Vasut28ea8272015-07-18 04:28:42 +02002603
2604 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
2605 r += NUM_RANKS_PER_SHADOW_REG) {
2606 scc_mgr_apply_group_dq_in_delay(test_bgn, 0);
2607 writel(0, &sdr_scc_mgr->update);
2608 }
2609
Marek Vasut914546e2015-07-20 09:20:42 +02002610 return ret;
Marek Vasutf09da112015-07-18 02:57:32 +02002611}
2612
2613/**
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002614 * rw_mgr_mem_calibrate_dq_dqs_centering() - Centering DQ/DQS
2615 * @rw_group: Read/Write Group
2616 * @test_bgn: Rank at which the test begins
2617 * @use_read_test: Perform a read test
2618 * @update_fom: Update FOM
2619 *
2620 * The centerin DQ/DQS stage attempts to align DQ and DQS signals on reads
2621 * within a group.
2622 */
2623static int
2624rw_mgr_mem_calibrate_dq_dqs_centering(const u32 rw_group, const u32 test_bgn,
2625 const int use_read_test,
2626 const int update_fom)
2627
2628{
2629 int ret, grp_calibrated;
2630 u32 rank_bgn, sr;
2631
2632 /*
2633 * Altera EMI_RM 2015.05.04 :: Figure 1-28
2634 * Read per-bit deskew can be done on a per shadow register basis.
2635 */
2636 grp_calibrated = 1;
2637 for (rank_bgn = 0, sr = 0;
2638 rank_bgn < RW_MGR_MEM_NUMBER_OF_RANKS;
2639 rank_bgn += NUM_RANKS_PER_SHADOW_REG, sr++) {
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002640 ret = rw_mgr_mem_calibrate_vfifo_center(rank_bgn, rw_group,
Marek Vasut0113c3e2015-07-18 20:42:27 +02002641 test_bgn,
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002642 use_read_test,
2643 update_fom);
Marek Vasut98668242015-07-18 20:44:28 +02002644 if (!ret)
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002645 continue;
2646
2647 grp_calibrated = 0;
2648 }
2649
2650 if (!grp_calibrated)
2651 return -EIO;
2652
2653 return 0;
2654}
2655
2656/**
Marek Vasutbce24ef2015-07-17 03:16:45 +02002657 * rw_mgr_mem_calibrate_vfifo() - Calibrate the read valid prediction FIFO
2658 * @rw_group: Read/Write Group
2659 * @test_bgn: Rank at which the test begins
Dinh Nguyen3da42852015-06-02 22:52:49 -05002660 *
Marek Vasutbce24ef2015-07-17 03:16:45 +02002661 * Stage 1: Calibrate the read valid prediction FIFO.
2662 *
2663 * This function implements UniPHY calibration Stage 1, as explained in
2664 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
2665 *
2666 * - read valid prediction will consist of finding:
2667 * - DQS enable phase and DQS enable delay (DQS Enable Calibration)
2668 * - DQS input phase and DQS input delay (DQ/DQS Centering)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002669 * - we also do a per-bit deskew on the DQ lines.
2670 */
Marek Vasutc336ca32015-07-17 04:24:18 +02002671static int rw_mgr_mem_calibrate_vfifo(const u32 rw_group, const u32 test_bgn)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002672{
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002673 uint32_t p, d;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002674 uint32_t dtaps_per_ptap;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002675 uint32_t failed_substage;
2676
Marek Vasut04372fb2015-07-18 02:46:56 +02002677 int ret;
2678
Marek Vasutc336ca32015-07-17 04:24:18 +02002679 debug("%s:%d: %u %u\n", __func__, __LINE__, rw_group, test_bgn);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002680
Marek Vasut7c0a9df2015-07-18 03:15:34 +02002681 /* Update info for sims */
2682 reg_file_set_group(rw_group);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002683 reg_file_set_stage(CAL_STAGE_VFIFO);
Marek Vasut7c0a9df2015-07-18 03:15:34 +02002684 reg_file_set_sub_stage(CAL_SUBSTAGE_GUARANTEED_READ);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002685
Marek Vasut7c0a9df2015-07-18 03:15:34 +02002686 failed_substage = CAL_SUBSTAGE_GUARANTEED_READ;
2687
2688 /* USER Determine number of delay taps for each phase tap. */
Marek Vasutd32badb2015-07-17 03:11:06 +02002689 dtaps_per_ptap = DIV_ROUND_UP(IO_DELAY_PER_OPA_TAP,
2690 IO_DELAY_PER_DQS_EN_DCHAIN_TAP) - 1;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002691
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002692 for (d = 0; d <= dtaps_per_ptap; d += 2) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05002693 /*
2694 * In RLDRAMX we may be messing the delay of pins in
Marek Vasutc336ca32015-07-17 04:24:18 +02002695 * the same write rw_group but outside of the current read
2696 * the rw_group, but that's ok because we haven't calibrated
Marek Vasutac70d2f2015-07-17 03:44:26 +02002697 * output side yet.
Dinh Nguyen3da42852015-06-02 22:52:49 -05002698 */
2699 if (d > 0) {
Marek Vasutf51a7d32015-07-19 02:18:21 +02002700 scc_mgr_apply_group_all_out_delay_add_all_ranks(
Marek Vasutc336ca32015-07-17 04:24:18 +02002701 rw_group, d);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002702 }
2703
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002704 for (p = 0; p <= IO_DQDQS_OUT_PHASE_MAX; p++) {
Marek Vasut04372fb2015-07-18 02:46:56 +02002705 /* 1) Guaranteed Write */
2706 ret = rw_mgr_mem_calibrate_guaranteed_write(rw_group, p);
2707 if (ret)
2708 break;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002709
Marek Vasutf09da112015-07-18 02:57:32 +02002710 /* 2) DQS Enable Calibration */
2711 ret = rw_mgr_mem_calibrate_dqs_enable_calibration(rw_group,
2712 test_bgn);
2713 if (ret) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05002714 failed_substage = CAL_SUBSTAGE_DQS_EN_PHASE;
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002715 continue;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002716 }
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002717
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002718 /* 3) Centering DQ/DQS */
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002719 /*
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002720 * If doing read after write calibration, do not update
2721 * FOM now. Do it then.
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002722 */
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002723 ret = rw_mgr_mem_calibrate_dq_dqs_centering(rw_group,
2724 test_bgn, 1, 0);
2725 if (ret) {
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002726 failed_substage = CAL_SUBSTAGE_VFIFO_CENTER;
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002727 continue;
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002728 }
2729
Marek Vasut16cfc4b2015-07-18 03:10:31 +02002730 /* All done. */
2731 goto cal_done_ok;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002732 }
2733 }
2734
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002735 /* Calibration Stage 1 failed. */
Marek Vasutc336ca32015-07-17 04:24:18 +02002736 set_failing_group_stage(rw_group, CAL_STAGE_VFIFO, failed_substage);
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002737 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002738
Marek Vasutfe2d0a22015-07-17 03:50:17 +02002739 /* Calibration Stage 1 completed OK. */
2740cal_done_ok:
Dinh Nguyen3da42852015-06-02 22:52:49 -05002741 /*
2742 * Reset the delay chains back to zero if they have moved > 1
2743 * (check for > 1 because loop will increase d even when pass in
2744 * first case).
2745 */
2746 if (d > 2)
Marek Vasutc336ca32015-07-17 04:24:18 +02002747 scc_mgr_zero_group(rw_group, 1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002748
2749 return 1;
2750}
2751
Marek Vasut78cdd7d2015-07-18 05:58:44 +02002752/**
2753 * rw_mgr_mem_calibrate_vfifo_end() - DQ/DQS Centering.
2754 * @rw_group: Read/Write Group
2755 * @test_bgn: Rank at which the test begins
2756 *
2757 * Stage 3: DQ/DQS Centering.
2758 *
2759 * This function implements UniPHY calibration Stage 3, as explained in
2760 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
2761 */
2762static int rw_mgr_mem_calibrate_vfifo_end(const u32 rw_group,
2763 const u32 test_bgn)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002764{
Marek Vasut78cdd7d2015-07-18 05:58:44 +02002765 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002766
Marek Vasut78cdd7d2015-07-18 05:58:44 +02002767 debug("%s:%d %u %u", __func__, __LINE__, rw_group, test_bgn);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002768
Marek Vasut78cdd7d2015-07-18 05:58:44 +02002769 /* Update info for sims. */
2770 reg_file_set_group(rw_group);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002771 reg_file_set_stage(CAL_STAGE_VFIFO_AFTER_WRITES);
2772 reg_file_set_sub_stage(CAL_SUBSTAGE_VFIFO_CENTER);
2773
Marek Vasut78cdd7d2015-07-18 05:58:44 +02002774 ret = rw_mgr_mem_calibrate_dq_dqs_centering(rw_group, test_bgn, 0, 1);
2775 if (ret)
2776 set_failing_group_stage(rw_group,
Dinh Nguyen3da42852015-06-02 22:52:49 -05002777 CAL_STAGE_VFIFO_AFTER_WRITES,
2778 CAL_SUBSTAGE_VFIFO_CENTER);
Marek Vasut78cdd7d2015-07-18 05:58:44 +02002779 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002780}
2781
Marek Vasutc9842782015-07-21 06:18:57 +02002782/**
2783 * rw_mgr_mem_calibrate_lfifo() - Minimize latency
2784 *
2785 * Stage 4: Minimize latency.
2786 *
2787 * This function implements UniPHY calibration Stage 4, as explained in
2788 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
2789 * Calibrate LFIFO to find smallest read latency.
2790 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05002791static uint32_t rw_mgr_mem_calibrate_lfifo(void)
2792{
Marek Vasutc9842782015-07-21 06:18:57 +02002793 int found_one = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002794
2795 debug("%s:%d\n", __func__, __LINE__);
2796
Marek Vasutc9842782015-07-21 06:18:57 +02002797 /* Update info for sims. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05002798 reg_file_set_stage(CAL_STAGE_LFIFO);
2799 reg_file_set_sub_stage(CAL_SUBSTAGE_READ_LATENCY);
2800
2801 /* Load up the patterns used by read calibration for all ranks */
2802 rw_mgr_mem_calibrate_read_load_patterns(0, 1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002803
Dinh Nguyen3da42852015-06-02 22:52:49 -05002804 do {
Marek Vasut1273dd92015-07-12 21:05:08 +02002805 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002806 debug_cond(DLEVEL == 2, "%s:%d lfifo: read_lat=%u",
2807 __func__, __LINE__, gbl->curr_read_lat);
2808
Marek Vasutc9842782015-07-21 06:18:57 +02002809 if (!rw_mgr_mem_calibrate_read_test_all_ranks(0, NUM_READ_TESTS,
2810 PASS_ALL_BITS, 1))
Dinh Nguyen3da42852015-06-02 22:52:49 -05002811 break;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002812
2813 found_one = 1;
Marek Vasutc9842782015-07-21 06:18:57 +02002814 /*
2815 * Reduce read latency and see if things are
2816 * working correctly.
2817 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05002818 gbl->curr_read_lat--;
2819 } while (gbl->curr_read_lat > 0);
2820
Marek Vasutc9842782015-07-21 06:18:57 +02002821 /* Reset the fifos to get pointers to known state. */
Marek Vasut1273dd92015-07-12 21:05:08 +02002822 writel(0, &phy_mgr_cmd->fifo_reset);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002823
2824 if (found_one) {
Marek Vasutc9842782015-07-21 06:18:57 +02002825 /* Add a fudge factor to the read latency that was determined */
Dinh Nguyen3da42852015-06-02 22:52:49 -05002826 gbl->curr_read_lat += 2;
Marek Vasut1273dd92015-07-12 21:05:08 +02002827 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
Marek Vasutc9842782015-07-21 06:18:57 +02002828 debug_cond(DLEVEL == 2,
2829 "%s:%d lfifo: success: using read_lat=%u\n",
2830 __func__, __LINE__, gbl->curr_read_lat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002831 } else {
2832 set_failing_group_stage(0xff, CAL_STAGE_LFIFO,
2833 CAL_SUBSTAGE_READ_LATENCY);
2834
Marek Vasutc9842782015-07-21 06:18:57 +02002835 debug_cond(DLEVEL == 2,
2836 "%s:%d lfifo: failed at initial read_lat=%u\n",
2837 __func__, __LINE__, gbl->curr_read_lat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002838 }
Marek Vasutc9842782015-07-21 06:18:57 +02002839
2840 return found_one;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002841}
2842
Marek Vasutc8570af2015-07-21 05:26:58 +02002843/**
2844 * search_window() - Search for the/part of the window with DM/DQS shift
2845 * @search_dm: If 1, search for the DM shift, if 0, search for DQS shift
2846 * @rank_bgn: Rank number
2847 * @write_group: Write Group
2848 * @bgn_curr: Current window begin
2849 * @end_curr: Current window end
2850 * @bgn_best: Current best window begin
2851 * @end_best: Current best window end
2852 * @win_best: Size of the best window
2853 * @new_dqs: New DQS value (only applicable if search_dm = 0).
2854 *
2855 * Search for the/part of the window with DM/DQS shift.
2856 */
2857static void search_window(const int search_dm,
2858 const u32 rank_bgn, const u32 write_group,
2859 int *bgn_curr, int *end_curr, int *bgn_best,
2860 int *end_best, int *win_best, int new_dqs)
2861{
2862 u32 bit_chk;
2863 const int max = IO_IO_OUT1_DELAY_MAX - new_dqs;
2864 int d, di;
2865
2866 /* Search for the/part of the window with DM/DQS shift. */
2867 for (di = max; di >= 0; di -= DELTA_D) {
2868 if (search_dm) {
2869 d = di;
2870 scc_mgr_apply_group_dm_out1_delay(d);
2871 } else {
2872 /* For DQS, we go from 0...max */
2873 d = max - di;
2874 /*
2875 * Note: This only shifts DQS, so are we limiting ourselve to
2876 * width of DQ unnecessarily.
2877 */
2878 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group,
2879 d + new_dqs);
2880 }
2881
2882 writel(0, &sdr_scc_mgr->update);
2883
2884 if (rw_mgr_mem_calibrate_write_test(rank_bgn, write_group, 1,
2885 PASS_ALL_BITS, &bit_chk,
2886 0)) {
2887 /* Set current end of the window. */
2888 *end_curr = search_dm ? -d : d;
2889
2890 /*
2891 * If a starting edge of our window has not been seen
2892 * this is our current start of the DM window.
2893 */
2894 if (*bgn_curr == IO_IO_OUT1_DELAY_MAX + 1)
2895 *bgn_curr = search_dm ? -d : d;
2896
2897 /*
2898 * If current window is bigger than best seen.
2899 * Set best seen to be current window.
2900 */
2901 if ((*end_curr - *bgn_curr + 1) > *win_best) {
2902 *win_best = *end_curr - *bgn_curr + 1;
2903 *bgn_best = *bgn_curr;
2904 *end_best = *end_curr;
2905 }
2906 } else {
2907 /* We just saw a failing test. Reset temp edge. */
2908 *bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
2909 *end_curr = IO_IO_OUT1_DELAY_MAX + 1;
2910
2911 /* Early exit is only applicable to DQS. */
2912 if (search_dm)
2913 continue;
2914
2915 /*
2916 * Early exit optimization: if the remaining delay
2917 * chain space is less than already seen largest
2918 * window we can exit.
2919 */
2920 if (*win_best - 1 > IO_IO_OUT1_DELAY_MAX - new_dqs - d)
2921 break;
2922 }
2923 }
2924}
2925
Dinh Nguyen3da42852015-06-02 22:52:49 -05002926/*
Marek Vasuta386a502015-07-21 05:33:49 +02002927 * rw_mgr_mem_calibrate_writes_center() - Center all windows
2928 * @rank_bgn: Rank number
2929 * @write_group: Write group
2930 * @test_bgn: Rank at which the test begins
2931 *
2932 * Center all windows. Do per-bit-deskew to possibly increase size of
Dinh Nguyen3da42852015-06-02 22:52:49 -05002933 * certain windows.
2934 */
Marek Vasut3b44f552015-07-21 05:00:42 +02002935static int
2936rw_mgr_mem_calibrate_writes_center(const u32 rank_bgn, const u32 write_group,
2937 const u32 test_bgn)
Dinh Nguyen3da42852015-06-02 22:52:49 -05002938{
Marek Vasutc8570af2015-07-21 05:26:58 +02002939 int i;
Marek Vasut3b44f552015-07-21 05:00:42 +02002940 u32 sticky_bit_chk;
2941 u32 min_index;
Marek Vasut3b44f552015-07-21 05:00:42 +02002942 int left_edge[RW_MGR_MEM_DQ_PER_WRITE_DQS];
2943 int right_edge[RW_MGR_MEM_DQ_PER_WRITE_DQS];
2944 int mid;
2945 int mid_min, orig_mid_min;
2946 int new_dqs, start_dqs;
2947 int dq_margin, dqs_margin, dm_margin;
2948 int bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
2949 int end_curr = IO_IO_OUT1_DELAY_MAX + 1;
2950 int bgn_best = IO_IO_OUT1_DELAY_MAX + 1;
2951 int end_best = IO_IO_OUT1_DELAY_MAX + 1;
2952 int win_best = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002953
Marek Vasutc4907892015-07-13 02:11:02 +02002954 int ret;
2955
Dinh Nguyen3da42852015-06-02 22:52:49 -05002956 debug("%s:%d %u %u", __func__, __LINE__, write_group, test_bgn);
2957
2958 dm_margin = 0;
2959
Marek Vasutc6540872015-07-21 05:29:05 +02002960 start_dqs = readl((SDR_PHYGRP_SCCGRP_ADDRESS |
2961 SCC_MGR_IO_OUT1_DELAY_OFFSET) +
Dinh Nguyen3da42852015-06-02 22:52:49 -05002962 (RW_MGR_MEM_DQ_PER_WRITE_DQS << 2));
2963
Marek Vasut3b44f552015-07-21 05:00:42 +02002964 /* Per-bit deskew. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05002965
2966 /*
Marek Vasut3b44f552015-07-21 05:00:42 +02002967 * Set the left and right edge of each bit to an illegal value.
2968 * Use (IO_IO_OUT1_DELAY_MAX + 1) as an illegal value.
Dinh Nguyen3da42852015-06-02 22:52:49 -05002969 */
2970 sticky_bit_chk = 0;
2971 for (i = 0; i < RW_MGR_MEM_DQ_PER_WRITE_DQS; i++) {
2972 left_edge[i] = IO_IO_OUT1_DELAY_MAX + 1;
2973 right_edge[i] = IO_IO_OUT1_DELAY_MAX + 1;
2974 }
2975
Marek Vasut3b44f552015-07-21 05:00:42 +02002976 /* Search for the left edge of the window for each bit. */
Marek Vasut71120772015-07-13 02:38:15 +02002977 search_left_edge(1, rank_bgn, write_group, 0, test_bgn,
Marek Vasut0c4be192015-07-18 20:34:00 +02002978 &sticky_bit_chk,
Marek Vasut71120772015-07-13 02:38:15 +02002979 left_edge, right_edge, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002980
Marek Vasut3b44f552015-07-21 05:00:42 +02002981 /* Search for the right edge of the window for each bit. */
Marek Vasutc4907892015-07-13 02:11:02 +02002982 ret = search_right_edge(1, rank_bgn, write_group, 0,
2983 start_dqs, 0,
Marek Vasut0c4be192015-07-18 20:34:00 +02002984 &sticky_bit_chk,
Marek Vasutc4907892015-07-13 02:11:02 +02002985 left_edge, right_edge, 0);
2986 if (ret) {
2987 set_failing_group_stage(test_bgn + ret - 1, CAL_STAGE_WRITES,
2988 CAL_SUBSTAGE_WRITES_CENTER);
Marek Vasutd043ee52015-07-21 05:32:49 +02002989 return -EINVAL;
Dinh Nguyen3da42852015-06-02 22:52:49 -05002990 }
2991
Marek Vasutafb3eb82015-07-18 19:18:06 +02002992 min_index = get_window_mid_index(1, left_edge, right_edge, &mid_min);
Dinh Nguyen3da42852015-06-02 22:52:49 -05002993
Marek Vasut3b44f552015-07-21 05:00:42 +02002994 /* Determine the amount we can change DQS (which is -mid_min). */
Dinh Nguyen3da42852015-06-02 22:52:49 -05002995 orig_mid_min = mid_min;
2996 new_dqs = start_dqs;
2997 mid_min = 0;
Marek Vasut3b44f552015-07-21 05:00:42 +02002998 debug_cond(DLEVEL == 1,
2999 "%s:%d write_center: start_dqs=%d new_dqs=%d mid_min=%d\n",
3000 __func__, __LINE__, start_dqs, new_dqs, mid_min);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003001
Marek Vasutffb8b662015-07-18 19:46:26 +02003002 /* Add delay to bring centre of all DQ windows to the same "level". */
3003 center_dq_windows(1, left_edge, right_edge, mid_min, orig_mid_min,
3004 min_index, 0, &dq_margin, &dqs_margin);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003005
3006 /* Move DQS */
3007 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group, new_dqs);
Marek Vasut1273dd92015-07-12 21:05:08 +02003008 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003009
3010 /* Centre DM */
3011 debug_cond(DLEVEL == 2, "%s:%d write_center: DM\n", __func__, __LINE__);
3012
3013 /*
Marek Vasut3b44f552015-07-21 05:00:42 +02003014 * Set the left and right edge of each bit to an illegal value.
3015 * Use (IO_IO_OUT1_DELAY_MAX + 1) as an illegal value.
Dinh Nguyen3da42852015-06-02 22:52:49 -05003016 */
3017 left_edge[0] = IO_IO_OUT1_DELAY_MAX + 1;
3018 right_edge[0] = IO_IO_OUT1_DELAY_MAX + 1;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003019
Marek Vasut3b44f552015-07-21 05:00:42 +02003020 /* Search for the/part of the window with DM shift. */
Marek Vasutc8570af2015-07-21 05:26:58 +02003021 search_window(1, rank_bgn, write_group, &bgn_curr, &end_curr,
3022 &bgn_best, &end_best, &win_best, 0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003023
Marek Vasut3b44f552015-07-21 05:00:42 +02003024 /* Reset DM delay chains to 0. */
Marek Vasut32675242015-07-17 06:07:13 +02003025 scc_mgr_apply_group_dm_out1_delay(0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003026
3027 /*
3028 * Check to see if the current window nudges up aganist 0 delay.
3029 * If so we need to continue the search by shifting DQS otherwise DQS
Marek Vasut3b44f552015-07-21 05:00:42 +02003030 * search begins as a new search.
3031 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003032 if (end_curr != 0) {
3033 bgn_curr = IO_IO_OUT1_DELAY_MAX + 1;
3034 end_curr = IO_IO_OUT1_DELAY_MAX + 1;
3035 }
3036
Marek Vasut3b44f552015-07-21 05:00:42 +02003037 /* Search for the/part of the window with DQS shifts. */
Marek Vasutc8570af2015-07-21 05:26:58 +02003038 search_window(0, rank_bgn, write_group, &bgn_curr, &end_curr,
3039 &bgn_best, &end_best, &win_best, new_dqs);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003040
Marek Vasut3b44f552015-07-21 05:00:42 +02003041 /* Assign left and right edge for cal and reporting. */
3042 left_edge[0] = -1 * bgn_best;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003043 right_edge[0] = end_best;
3044
Marek Vasut3b44f552015-07-21 05:00:42 +02003045 debug_cond(DLEVEL == 2, "%s:%d dm_calib: left=%d right=%d\n",
3046 __func__, __LINE__, left_edge[0], right_edge[0]);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003047
Marek Vasut3b44f552015-07-21 05:00:42 +02003048 /* Move DQS (back to orig). */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003049 scc_mgr_apply_group_dqs_io_and_oct_out1(write_group, new_dqs);
3050
3051 /* Move DM */
3052
Marek Vasut3b44f552015-07-21 05:00:42 +02003053 /* Find middle of window for the DM bit. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003054 mid = (left_edge[0] - right_edge[0]) / 2;
3055
Marek Vasut3b44f552015-07-21 05:00:42 +02003056 /* Only move right, since we are not moving DQS/DQ. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003057 if (mid < 0)
3058 mid = 0;
3059
Marek Vasut3b44f552015-07-21 05:00:42 +02003060 /* dm_marign should fail if we never find a window. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003061 if (win_best == 0)
3062 dm_margin = -1;
3063 else
3064 dm_margin = left_edge[0] - mid;
3065
Marek Vasut32675242015-07-17 06:07:13 +02003066 scc_mgr_apply_group_dm_out1_delay(mid);
Marek Vasut1273dd92015-07-12 21:05:08 +02003067 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003068
Marek Vasut3b44f552015-07-21 05:00:42 +02003069 debug_cond(DLEVEL == 2,
3070 "%s:%d dm_calib: left=%d right=%d mid=%d dm_margin=%d\n",
3071 __func__, __LINE__, left_edge[0], right_edge[0],
3072 mid, dm_margin);
3073 /* Export values. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003074 gbl->fom_out += dq_margin + dqs_margin;
3075
Marek Vasut3b44f552015-07-21 05:00:42 +02003076 debug_cond(DLEVEL == 2,
3077 "%s:%d write_center: dq_margin=%d dqs_margin=%d dm_margin=%d\n",
3078 __func__, __LINE__, dq_margin, dqs_margin, dm_margin);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003079
3080 /*
3081 * Do not remove this line as it makes sure all of our
3082 * decisions have been applied.
3083 */
Marek Vasut1273dd92015-07-12 21:05:08 +02003084 writel(0, &sdr_scc_mgr->update);
Marek Vasut3b44f552015-07-21 05:00:42 +02003085
Marek Vasutd043ee52015-07-21 05:32:49 +02003086 if ((dq_margin < 0) || (dqs_margin < 0) || (dm_margin < 0))
3087 return -EINVAL;
3088
3089 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003090}
3091
Marek Vasutdb3a6062015-07-18 07:23:25 +02003092/**
3093 * rw_mgr_mem_calibrate_writes() - Write Calibration Part One
3094 * @rank_bgn: Rank number
3095 * @group: Read/Write Group
3096 * @test_bgn: Rank at which the test begins
3097 *
3098 * Stage 2: Write Calibration Part One.
3099 *
3100 * This function implements UniPHY calibration Stage 2, as explained in
3101 * detail in Altera EMI_RM 2015.05.04 , "UniPHY Calibration Stages".
3102 */
3103static int rw_mgr_mem_calibrate_writes(const u32 rank_bgn, const u32 group,
3104 const u32 test_bgn)
Dinh Nguyen3da42852015-06-02 22:52:49 -05003105{
Marek Vasutdb3a6062015-07-18 07:23:25 +02003106 int ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003107
Marek Vasutdb3a6062015-07-18 07:23:25 +02003108 /* Update info for sims */
3109 debug("%s:%d %u %u\n", __func__, __LINE__, group, test_bgn);
3110
3111 reg_file_set_group(group);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003112 reg_file_set_stage(CAL_STAGE_WRITES);
3113 reg_file_set_sub_stage(CAL_SUBSTAGE_WRITES_CENTER);
3114
Marek Vasutdb3a6062015-07-18 07:23:25 +02003115 ret = rw_mgr_mem_calibrate_writes_center(rank_bgn, group, test_bgn);
Marek Vasutd043ee52015-07-21 05:32:49 +02003116 if (ret)
Marek Vasutdb3a6062015-07-18 07:23:25 +02003117 set_failing_group_stage(group, CAL_STAGE_WRITES,
Dinh Nguyen3da42852015-06-02 22:52:49 -05003118 CAL_SUBSTAGE_WRITES_CENTER);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003119
Marek Vasutd043ee52015-07-21 05:32:49 +02003120 return ret;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003121}
3122
Marek Vasut4b0ac262015-07-20 07:33:33 +02003123/**
3124 * mem_precharge_and_activate() - Precharge all banks and activate
3125 *
3126 * Precharge all banks and activate row 0 in bank "000..." and bank "111...".
3127 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003128static void mem_precharge_and_activate(void)
3129{
Marek Vasut4b0ac262015-07-20 07:33:33 +02003130 int r;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003131
3132 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS; r++) {
Marek Vasut4b0ac262015-07-20 07:33:33 +02003133 /* Set rank. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003134 set_rank_and_odt_mask(r, RW_MGR_ODT_MODE_OFF);
3135
Marek Vasut4b0ac262015-07-20 07:33:33 +02003136 /* Precharge all banks. */
Marek Vasut1273dd92015-07-12 21:05:08 +02003137 writel(RW_MGR_PRECHARGE_ALL, SDR_PHYGRP_RWMGRGRP_ADDRESS |
3138 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003139
Marek Vasut1273dd92015-07-12 21:05:08 +02003140 writel(0x0F, &sdr_rw_load_mgr_regs->load_cntr0);
3141 writel(RW_MGR_ACTIVATE_0_AND_1_WAIT1,
3142 &sdr_rw_load_jump_mgr_regs->load_jump_add0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003143
Marek Vasut1273dd92015-07-12 21:05:08 +02003144 writel(0x0F, &sdr_rw_load_mgr_regs->load_cntr1);
3145 writel(RW_MGR_ACTIVATE_0_AND_1_WAIT2,
3146 &sdr_rw_load_jump_mgr_regs->load_jump_add1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003147
Marek Vasut4b0ac262015-07-20 07:33:33 +02003148 /* Activate rows. */
Marek Vasut1273dd92015-07-12 21:05:08 +02003149 writel(RW_MGR_ACTIVATE_0_AND_1, SDR_PHYGRP_RWMGRGRP_ADDRESS |
3150 RW_MGR_RUN_SINGLE_GROUP_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003151 }
3152}
3153
Marek Vasut16502a02015-07-17 01:57:41 +02003154/**
3155 * mem_init_latency() - Configure memory RLAT and WLAT settings
3156 *
3157 * Configure memory RLAT and WLAT parameters.
3158 */
3159static void mem_init_latency(void)
Dinh Nguyen3da42852015-06-02 22:52:49 -05003160{
Marek Vasut16502a02015-07-17 01:57:41 +02003161 /*
3162 * For AV/CV, LFIFO is hardened and always runs at full rate
3163 * so max latency in AFI clocks, used here, is correspondingly
3164 * smaller.
3165 */
3166 const u32 max_latency = (1 << MAX_LATENCY_COUNT_WIDTH) - 1;
3167 u32 rlat, wlat;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003168
3169 debug("%s:%d\n", __func__, __LINE__);
Marek Vasut16502a02015-07-17 01:57:41 +02003170
3171 /*
3172 * Read in write latency.
3173 * WL for Hard PHY does not include additive latency.
3174 */
Marek Vasut1273dd92015-07-12 21:05:08 +02003175 wlat = readl(&data_mgr->t_wl_add);
3176 wlat += readl(&data_mgr->mem_t_add);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003177
Marek Vasut16502a02015-07-17 01:57:41 +02003178 gbl->rw_wl_nop_cycles = wlat - 1;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003179
Marek Vasut16502a02015-07-17 01:57:41 +02003180 /* Read in readl latency. */
Marek Vasut1273dd92015-07-12 21:05:08 +02003181 rlat = readl(&data_mgr->t_rl_add);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003182
Marek Vasut16502a02015-07-17 01:57:41 +02003183 /* Set a pretty high read latency initially. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003184 gbl->curr_read_lat = rlat + 16;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003185 if (gbl->curr_read_lat > max_latency)
3186 gbl->curr_read_lat = max_latency;
3187
Marek Vasut1273dd92015-07-12 21:05:08 +02003188 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003189
Marek Vasut16502a02015-07-17 01:57:41 +02003190 /* Advertise write latency. */
3191 writel(wlat, &phy_mgr_cfg->afi_wlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003192}
3193
Marek Vasut51cea0b2015-07-26 10:54:15 +02003194/**
3195 * @mem_skip_calibrate() - Set VFIFO and LFIFO to instant-on settings
3196 *
3197 * Set VFIFO and LFIFO to instant-on settings in skip calibration mode.
3198 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003199static void mem_skip_calibrate(void)
3200{
3201 uint32_t vfifo_offset;
3202 uint32_t i, j, r;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003203
3204 debug("%s:%d\n", __func__, __LINE__);
3205 /* Need to update every shadow register set used by the interface */
3206 for (r = 0; r < RW_MGR_MEM_NUMBER_OF_RANKS;
Marek Vasut51cea0b2015-07-26 10:54:15 +02003207 r += NUM_RANKS_PER_SHADOW_REG) {
Dinh Nguyen3da42852015-06-02 22:52:49 -05003208 /*
3209 * Set output phase alignment settings appropriate for
3210 * skip calibration.
3211 */
3212 for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
3213 scc_mgr_set_dqs_en_phase(i, 0);
3214#if IO_DLL_CHAIN_LENGTH == 6
3215 scc_mgr_set_dqdqs_output_phase(i, 6);
3216#else
3217 scc_mgr_set_dqdqs_output_phase(i, 7);
3218#endif
3219 /*
3220 * Case:33398
3221 *
3222 * Write data arrives to the I/O two cycles before write
3223 * latency is reached (720 deg).
3224 * -> due to bit-slip in a/c bus
3225 * -> to allow board skew where dqs is longer than ck
3226 * -> how often can this happen!?
3227 * -> can claim back some ptaps for high freq
3228 * support if we can relax this, but i digress...
3229 *
3230 * The write_clk leads mem_ck by 90 deg
3231 * The minimum ptap of the OPA is 180 deg
3232 * Each ptap has (360 / IO_DLL_CHAIN_LENGH) deg of delay
3233 * The write_clk is always delayed by 2 ptaps
3234 *
3235 * Hence, to make DQS aligned to CK, we need to delay
3236 * DQS by:
3237 * (720 - 90 - 180 - 2 * (360 / IO_DLL_CHAIN_LENGTH))
3238 *
3239 * Dividing the above by (360 / IO_DLL_CHAIN_LENGTH)
3240 * gives us the number of ptaps, which simplies to:
3241 *
3242 * (1.25 * IO_DLL_CHAIN_LENGTH - 2)
3243 */
Marek Vasut51cea0b2015-07-26 10:54:15 +02003244 scc_mgr_set_dqdqs_output_phase(i,
3245 1.25 * IO_DLL_CHAIN_LENGTH - 2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003246 }
Marek Vasut1273dd92015-07-12 21:05:08 +02003247 writel(0xff, &sdr_scc_mgr->dqs_ena);
3248 writel(0xff, &sdr_scc_mgr->dqs_io_ena);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003249
Dinh Nguyen3da42852015-06-02 22:52:49 -05003250 for (i = 0; i < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; i++) {
Marek Vasut1273dd92015-07-12 21:05:08 +02003251 writel(i, SDR_PHYGRP_SCCGRP_ADDRESS |
3252 SCC_MGR_GROUP_COUNTER_OFFSET);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003253 }
Marek Vasut1273dd92015-07-12 21:05:08 +02003254 writel(0xff, &sdr_scc_mgr->dq_ena);
3255 writel(0xff, &sdr_scc_mgr->dm_ena);
3256 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003257 }
3258
3259 /* Compensate for simulation model behaviour */
3260 for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
3261 scc_mgr_set_dqs_bus_in_delay(i, 10);
3262 scc_mgr_load_dqs(i);
3263 }
Marek Vasut1273dd92015-07-12 21:05:08 +02003264 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003265
3266 /*
3267 * ArriaV has hard FIFOs that can only be initialized by incrementing
3268 * in sequencer.
3269 */
3270 vfifo_offset = CALIB_VFIFO_OFFSET;
Marek Vasut51cea0b2015-07-26 10:54:15 +02003271 for (j = 0; j < vfifo_offset; j++)
Marek Vasut1273dd92015-07-12 21:05:08 +02003272 writel(0xff, &phy_mgr_cmd->inc_vfifo_hard_phy);
Marek Vasut1273dd92015-07-12 21:05:08 +02003273 writel(0, &phy_mgr_cmd->fifo_reset);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003274
3275 /*
Marek Vasut51cea0b2015-07-26 10:54:15 +02003276 * For Arria V and Cyclone V with hard LFIFO, we get the skip-cal
3277 * setting from generation-time constant.
Dinh Nguyen3da42852015-06-02 22:52:49 -05003278 */
3279 gbl->curr_read_lat = CALIB_LFIFO_OFFSET;
Marek Vasut1273dd92015-07-12 21:05:08 +02003280 writel(gbl->curr_read_lat, &phy_mgr_cfg->phy_rlat);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003281}
3282
Marek Vasut3589fbf2015-07-20 04:34:51 +02003283/**
3284 * mem_calibrate() - Memory calibration entry point.
3285 *
3286 * Perform memory calibration.
3287 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003288static uint32_t mem_calibrate(void)
3289{
3290 uint32_t i;
3291 uint32_t rank_bgn, sr;
3292 uint32_t write_group, write_test_bgn;
3293 uint32_t read_group, read_test_bgn;
3294 uint32_t run_groups, current_run;
3295 uint32_t failing_groups = 0;
3296 uint32_t group_failed = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003297
Marek Vasut33c42bb2015-07-17 02:21:47 +02003298 const u32 rwdqs_ratio = RW_MGR_MEM_IF_READ_DQS_WIDTH /
3299 RW_MGR_MEM_IF_WRITE_DQS_WIDTH;
3300
Dinh Nguyen3da42852015-06-02 22:52:49 -05003301 debug("%s:%d\n", __func__, __LINE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003302
Marek Vasut16502a02015-07-17 01:57:41 +02003303 /* Initialize the data settings */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003304 gbl->error_substage = CAL_SUBSTAGE_NIL;
3305 gbl->error_stage = CAL_STAGE_NIL;
3306 gbl->error_group = 0xff;
3307 gbl->fom_in = 0;
3308 gbl->fom_out = 0;
3309
Marek Vasut16502a02015-07-17 01:57:41 +02003310 /* Initialize WLAT and RLAT. */
3311 mem_init_latency();
3312
3313 /* Initialize bit slips. */
3314 mem_precharge_and_activate();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003315
Dinh Nguyen3da42852015-06-02 22:52:49 -05003316 for (i = 0; i < RW_MGR_MEM_IF_READ_DQS_WIDTH; i++) {
Marek Vasut1273dd92015-07-12 21:05:08 +02003317 writel(i, SDR_PHYGRP_SCCGRP_ADDRESS |
3318 SCC_MGR_GROUP_COUNTER_OFFSET);
Marek Vasutfa5d8212015-07-19 01:34:43 +02003319 /* Only needed once to set all groups, pins, DQ, DQS, DM. */
3320 if (i == 0)
3321 scc_mgr_set_hhp_extras();
3322
Marek Vasutc5c5f532015-07-17 02:06:20 +02003323 scc_set_bypass_mode(i);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003324 }
3325
Marek Vasut722c9682015-07-17 02:07:12 +02003326 /* Calibration is skipped. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003327 if ((dyn_calib_steps & CALIB_SKIP_ALL) == CALIB_SKIP_ALL) {
3328 /*
3329 * Set VFIFO and LFIFO to instant-on settings in skip
3330 * calibration mode.
3331 */
3332 mem_skip_calibrate();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003333
Marek Vasut722c9682015-07-17 02:07:12 +02003334 /*
3335 * Do not remove this line as it makes sure all of our
3336 * decisions have been applied.
3337 */
3338 writel(0, &sdr_scc_mgr->update);
3339 return 1;
3340 }
Dinh Nguyen3da42852015-06-02 22:52:49 -05003341
Marek Vasut722c9682015-07-17 02:07:12 +02003342 /* Calibration is not skipped. */
3343 for (i = 0; i < NUM_CALIB_REPEAT; i++) {
3344 /*
3345 * Zero all delay chain/phase settings for all
3346 * groups and all shadow register sets.
3347 */
3348 scc_mgr_zero_all();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003349
Marek Vasutf085ac32015-08-02 18:27:21 +02003350 run_groups = ~0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003351
Marek Vasut722c9682015-07-17 02:07:12 +02003352 for (write_group = 0, write_test_bgn = 0; write_group
3353 < RW_MGR_MEM_IF_WRITE_DQS_WIDTH; write_group++,
3354 write_test_bgn += RW_MGR_MEM_DQ_PER_WRITE_DQS) {
Marek Vasutc452dcd2015-07-17 02:50:56 +02003355
3356 /* Initialize the group failure */
Marek Vasut722c9682015-07-17 02:07:12 +02003357 group_failed = 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003358
Marek Vasut722c9682015-07-17 02:07:12 +02003359 current_run = run_groups & ((1 <<
3360 RW_MGR_NUM_DQS_PER_WRITE_GROUP) - 1);
3361 run_groups = run_groups >>
3362 RW_MGR_NUM_DQS_PER_WRITE_GROUP;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003363
Marek Vasut722c9682015-07-17 02:07:12 +02003364 if (current_run == 0)
3365 continue;
3366
3367 writel(write_group, SDR_PHYGRP_SCCGRP_ADDRESS |
3368 SCC_MGR_GROUP_COUNTER_OFFSET);
3369 scc_mgr_zero_group(write_group, 0);
3370
Marek Vasut33c42bb2015-07-17 02:21:47 +02003371 for (read_group = write_group * rwdqs_ratio,
3372 read_test_bgn = 0;
Marek Vasutc452dcd2015-07-17 02:50:56 +02003373 read_group < (write_group + 1) * rwdqs_ratio;
Marek Vasut33c42bb2015-07-17 02:21:47 +02003374 read_group++,
3375 read_test_bgn += RW_MGR_MEM_DQ_PER_READ_DQS) {
3376 if (STATIC_CALIB_STEPS & CALIB_SKIP_VFIFO)
3377 continue;
Marek Vasut722c9682015-07-17 02:07:12 +02003378
Marek Vasut33c42bb2015-07-17 02:21:47 +02003379 /* Calibrate the VFIFO */
3380 if (rw_mgr_mem_calibrate_vfifo(read_group,
3381 read_test_bgn))
3382 continue;
3383
Marek Vasutc452dcd2015-07-17 02:50:56 +02003384 if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
3385 return 0;
3386
3387 /* The group failed, we're done. */
3388 goto grp_failed;
3389 }
3390
3391 /* Calibrate the output side */
3392 for (rank_bgn = 0, sr = 0;
3393 rank_bgn < RW_MGR_MEM_NUMBER_OF_RANKS;
3394 rank_bgn += NUM_RANKS_PER_SHADOW_REG, sr++) {
3395 if (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES)
3396 continue;
3397
3398 /* Not needed in quick mode! */
3399 if (STATIC_CALIB_STEPS & CALIB_SKIP_DELAY_SWEEPS)
3400 continue;
3401
Marek Vasutc452dcd2015-07-17 02:50:56 +02003402 /* Calibrate WRITEs */
Marek Vasutdb3a6062015-07-18 07:23:25 +02003403 if (!rw_mgr_mem_calibrate_writes(rank_bgn,
Marek Vasutc452dcd2015-07-17 02:50:56 +02003404 write_group, write_test_bgn))
3405 continue;
3406
Marek Vasut33c42bb2015-07-17 02:21:47 +02003407 group_failed = 1;
3408 if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
3409 return 0;
Marek Vasut722c9682015-07-17 02:07:12 +02003410 }
3411
Marek Vasutc452dcd2015-07-17 02:50:56 +02003412 /* Some group failed, we're done. */
3413 if (group_failed)
3414 goto grp_failed;
Marek Vasut4ac21612015-07-17 02:31:04 +02003415
Marek Vasutc452dcd2015-07-17 02:50:56 +02003416 for (read_group = write_group * rwdqs_ratio,
3417 read_test_bgn = 0;
3418 read_group < (write_group + 1) * rwdqs_ratio;
3419 read_group++,
3420 read_test_bgn += RW_MGR_MEM_DQ_PER_READ_DQS) {
3421 if (STATIC_CALIB_STEPS & CALIB_SKIP_WRITES)
3422 continue;
Marek Vasut4ac21612015-07-17 02:31:04 +02003423
Marek Vasut78cdd7d2015-07-18 05:58:44 +02003424 if (!rw_mgr_mem_calibrate_vfifo_end(read_group,
Marek Vasutc452dcd2015-07-17 02:50:56 +02003425 read_test_bgn))
3426 continue;
Marek Vasut4ac21612015-07-17 02:31:04 +02003427
Marek Vasutc452dcd2015-07-17 02:50:56 +02003428 if (!(gbl->phy_debug_mode_flags & PHY_DEBUG_SWEEP_ALL_GROUPS))
3429 return 0;
Marek Vasut4ac21612015-07-17 02:31:04 +02003430
Marek Vasutc452dcd2015-07-17 02:50:56 +02003431 /* The group failed, we're done. */
3432 goto grp_failed;
Marek Vasut722c9682015-07-17 02:07:12 +02003433 }
3434
Marek Vasutc452dcd2015-07-17 02:50:56 +02003435 /* No group failed, continue as usual. */
3436 continue;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003437
Marek Vasutc452dcd2015-07-17 02:50:56 +02003438grp_failed: /* A group failed, increment the counter. */
3439 failing_groups++;
Marek Vasut722c9682015-07-17 02:07:12 +02003440 }
Dinh Nguyen3da42852015-06-02 22:52:49 -05003441
Marek Vasut722c9682015-07-17 02:07:12 +02003442 /*
3443 * USER If there are any failing groups then report
3444 * the failure.
3445 */
3446 if (failing_groups != 0)
3447 return 0;
3448
Marek Vasutc50ae302015-07-17 02:40:21 +02003449 if (STATIC_CALIB_STEPS & CALIB_SKIP_LFIFO)
3450 continue;
3451
Marek Vasut722c9682015-07-17 02:07:12 +02003452 /* Calibrate the LFIFO */
Marek Vasutc50ae302015-07-17 02:40:21 +02003453 if (!rw_mgr_mem_calibrate_lfifo())
3454 return 0;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003455 }
3456
3457 /*
3458 * Do not remove this line as it makes sure all of our decisions
3459 * have been applied.
3460 */
Marek Vasut1273dd92015-07-12 21:05:08 +02003461 writel(0, &sdr_scc_mgr->update);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003462 return 1;
3463}
3464
Marek Vasut23a040c2015-07-17 01:20:21 +02003465/**
3466 * run_mem_calibrate() - Perform memory calibration
3467 *
3468 * This function triggers the entire memory calibration procedure.
3469 */
3470static int run_mem_calibrate(void)
Dinh Nguyen3da42852015-06-02 22:52:49 -05003471{
Marek Vasut23a040c2015-07-17 01:20:21 +02003472 int pass;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003473
3474 debug("%s:%d\n", __func__, __LINE__);
3475
3476 /* Reset pass/fail status shown on afi_cal_success/fail */
Marek Vasut1273dd92015-07-12 21:05:08 +02003477 writel(PHY_MGR_CAL_RESET, &phy_mgr_cfg->cal_status);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003478
Marek Vasut23a040c2015-07-17 01:20:21 +02003479 /* Stop tracking manager. */
3480 clrbits_le32(&sdr_ctrl->ctrl_cfg, 1 << 22);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003481
Marek Vasut9fa9c902015-07-17 01:12:07 +02003482 phy_mgr_initialize();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003483 rw_mgr_mem_initialize();
3484
Marek Vasut23a040c2015-07-17 01:20:21 +02003485 /* Perform the actual memory calibration. */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003486 pass = mem_calibrate();
3487
3488 mem_precharge_and_activate();
Marek Vasut1273dd92015-07-12 21:05:08 +02003489 writel(0, &phy_mgr_cmd->fifo_reset);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003490
Marek Vasut23a040c2015-07-17 01:20:21 +02003491 /* Handoff. */
3492 rw_mgr_mem_handoff();
Dinh Nguyen3da42852015-06-02 22:52:49 -05003493 /*
Marek Vasut23a040c2015-07-17 01:20:21 +02003494 * In Hard PHY this is a 2-bit control:
3495 * 0: AFI Mux Select
3496 * 1: DDIO Mux Select
Dinh Nguyen3da42852015-06-02 22:52:49 -05003497 */
Marek Vasut23a040c2015-07-17 01:20:21 +02003498 writel(0x2, &phy_mgr_cfg->mux_sel);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003499
Marek Vasut23a040c2015-07-17 01:20:21 +02003500 /* Start tracking manager. */
3501 setbits_le32(&sdr_ctrl->ctrl_cfg, 1 << 22);
3502
3503 return pass;
3504}
3505
3506/**
3507 * debug_mem_calibrate() - Report result of memory calibration
3508 * @pass: Value indicating whether calibration passed or failed
3509 *
3510 * This function reports the results of the memory calibration
3511 * and writes debug information into the register file.
3512 */
3513static void debug_mem_calibrate(int pass)
3514{
3515 uint32_t debug_info;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003516
3517 if (pass) {
3518 printf("%s: CALIBRATION PASSED\n", __FILE__);
3519
3520 gbl->fom_in /= 2;
3521 gbl->fom_out /= 2;
3522
3523 if (gbl->fom_in > 0xff)
3524 gbl->fom_in = 0xff;
3525
3526 if (gbl->fom_out > 0xff)
3527 gbl->fom_out = 0xff;
3528
3529 /* Update the FOM in the register file */
3530 debug_info = gbl->fom_in;
3531 debug_info |= gbl->fom_out << 8;
Marek Vasut1273dd92015-07-12 21:05:08 +02003532 writel(debug_info, &sdr_reg_file->fom);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003533
Marek Vasut1273dd92015-07-12 21:05:08 +02003534 writel(debug_info, &phy_mgr_cfg->cal_debug_info);
3535 writel(PHY_MGR_CAL_SUCCESS, &phy_mgr_cfg->cal_status);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003536 } else {
3537 printf("%s: CALIBRATION FAILED\n", __FILE__);
3538
3539 debug_info = gbl->error_stage;
3540 debug_info |= gbl->error_substage << 8;
3541 debug_info |= gbl->error_group << 16;
3542
Marek Vasut1273dd92015-07-12 21:05:08 +02003543 writel(debug_info, &sdr_reg_file->failing_stage);
3544 writel(debug_info, &phy_mgr_cfg->cal_debug_info);
3545 writel(PHY_MGR_CAL_FAIL, &phy_mgr_cfg->cal_status);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003546
3547 /* Update the failing group/stage in the register file */
3548 debug_info = gbl->error_stage;
3549 debug_info |= gbl->error_substage << 8;
3550 debug_info |= gbl->error_group << 16;
Marek Vasut1273dd92015-07-12 21:05:08 +02003551 writel(debug_info, &sdr_reg_file->failing_stage);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003552 }
3553
Marek Vasut23a040c2015-07-17 01:20:21 +02003554 printf("%s: Calibration complete\n", __FILE__);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003555}
3556
Marek Vasutbb064342015-07-19 06:12:42 +02003557/**
3558 * hc_initialize_rom_data() - Initialize ROM data
3559 *
3560 * Initialize ROM data.
3561 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003562static void hc_initialize_rom_data(void)
3563{
Marek Vasut04955cf2015-08-02 17:15:19 +02003564 unsigned int nelem = 0;
3565 const u32 *rom_init;
Marek Vasutbb064342015-07-19 06:12:42 +02003566 u32 i, addr;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003567
Marek Vasut04955cf2015-08-02 17:15:19 +02003568 socfpga_get_seq_inst_init(&rom_init, &nelem);
Marek Vasutc4815f72015-07-12 19:03:33 +02003569 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_INST_ROM_WRITE_OFFSET;
Marek Vasut04955cf2015-08-02 17:15:19 +02003570 for (i = 0; i < nelem; i++)
3571 writel(rom_init[i], addr + (i << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05003572
Marek Vasut04955cf2015-08-02 17:15:19 +02003573 socfpga_get_seq_ac_init(&rom_init, &nelem);
Marek Vasutc4815f72015-07-12 19:03:33 +02003574 addr = SDR_PHYGRP_RWMGRGRP_ADDRESS | RW_MGR_AC_ROM_WRITE_OFFSET;
Marek Vasut04955cf2015-08-02 17:15:19 +02003575 for (i = 0; i < nelem; i++)
3576 writel(rom_init[i], addr + (i << 2));
Dinh Nguyen3da42852015-06-02 22:52:49 -05003577}
3578
Marek Vasut9c1ab2c2015-07-19 06:13:37 +02003579/**
3580 * initialize_reg_file() - Initialize SDR register file
3581 *
3582 * Initialize SDR register file.
3583 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003584static void initialize_reg_file(void)
3585{
Dinh Nguyen3da42852015-06-02 22:52:49 -05003586 /* Initialize the register file with the correct data */
Marek Vasut1273dd92015-07-12 21:05:08 +02003587 writel(REG_FILE_INIT_SEQ_SIGNATURE, &sdr_reg_file->signature);
3588 writel(0, &sdr_reg_file->debug_data_addr);
3589 writel(0, &sdr_reg_file->cur_stage);
3590 writel(0, &sdr_reg_file->fom);
3591 writel(0, &sdr_reg_file->failing_stage);
3592 writel(0, &sdr_reg_file->debug1);
3593 writel(0, &sdr_reg_file->debug2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003594}
3595
Marek Vasut2ca151f2015-07-19 06:14:04 +02003596/**
3597 * initialize_hps_phy() - Initialize HPS PHY
3598 *
3599 * Initialize HPS PHY.
3600 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003601static void initialize_hps_phy(void)
3602{
3603 uint32_t reg;
Dinh Nguyen3da42852015-06-02 22:52:49 -05003604 /*
3605 * Tracking also gets configured here because it's in the
3606 * same register.
3607 */
3608 uint32_t trk_sample_count = 7500;
3609 uint32_t trk_long_idle_sample_count = (10 << 16) | 100;
3610 /*
3611 * Format is number of outer loops in the 16 MSB, sample
3612 * count in 16 LSB.
3613 */
3614
3615 reg = 0;
3616 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_ACDELAYEN_SET(2);
3617 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQDELAYEN_SET(1);
3618 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQSDELAYEN_SET(1);
3619 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_DQSLOGICDELAYEN_SET(1);
3620 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_RESETDELAYEN_SET(0);
3621 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_LPDDRDIS_SET(1);
3622 /*
3623 * This field selects the intrinsic latency to RDATA_EN/FULL path.
3624 * 00-bypass, 01- add 5 cycles, 10- add 10 cycles, 11- add 15 cycles.
3625 */
3626 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_ADDLATSEL_SET(0);
3627 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_SAMPLECOUNT_19_0_SET(
3628 trk_sample_count);
Marek Vasut6cb9f162015-07-12 20:49:39 +02003629 writel(reg, &sdr_ctrl->phy_ctrl0);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003630
3631 reg = 0;
3632 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_SAMPLECOUNT_31_20_SET(
3633 trk_sample_count >>
3634 SDR_CTRLGRP_PHYCTRL_PHYCTRL_0_SAMPLECOUNT_19_0_WIDTH);
3635 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_LONGIDLESAMPLECOUNT_19_0_SET(
3636 trk_long_idle_sample_count);
Marek Vasut6cb9f162015-07-12 20:49:39 +02003637 writel(reg, &sdr_ctrl->phy_ctrl1);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003638
3639 reg = 0;
3640 reg |= SDR_CTRLGRP_PHYCTRL_PHYCTRL_2_LONGIDLESAMPLECOUNT_31_20_SET(
3641 trk_long_idle_sample_count >>
3642 SDR_CTRLGRP_PHYCTRL_PHYCTRL_1_LONGIDLESAMPLECOUNT_19_0_WIDTH);
Marek Vasut6cb9f162015-07-12 20:49:39 +02003643 writel(reg, &sdr_ctrl->phy_ctrl2);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003644}
3645
Marek Vasut880e46f2015-07-17 00:45:11 +02003646/**
3647 * initialize_tracking() - Initialize tracking
3648 *
3649 * Initialize the register file with usable initial data.
3650 */
Dinh Nguyen3da42852015-06-02 22:52:49 -05003651static void initialize_tracking(void)
3652{
Marek Vasut880e46f2015-07-17 00:45:11 +02003653 /*
3654 * Initialize the register file with the correct data.
3655 * Compute usable version of value in case we skip full
3656 * computation later.
3657 */
3658 writel(DIV_ROUND_UP(IO_DELAY_PER_OPA_TAP, IO_DELAY_PER_DCHAIN_TAP) - 1,
3659 &sdr_reg_file->dtaps_per_ptap);
3660
3661 /* trk_sample_count */
3662 writel(7500, &sdr_reg_file->trk_sample_count);
3663
3664 /* longidle outer loop [15:0] */
3665 writel((10 << 16) | (100 << 0), &sdr_reg_file->trk_longidle);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003666
3667 /*
Marek Vasut880e46f2015-07-17 00:45:11 +02003668 * longidle sample count [31:24]
3669 * trfc, worst case of 933Mhz 4Gb [23:16]
3670 * trcd, worst case [15:8]
3671 * vfifo wait [7:0]
Dinh Nguyen3da42852015-06-02 22:52:49 -05003672 */
Marek Vasut880e46f2015-07-17 00:45:11 +02003673 writel((243 << 24) | (14 << 16) | (10 << 8) | (4 << 0),
3674 &sdr_reg_file->delays);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003675
Marek Vasut880e46f2015-07-17 00:45:11 +02003676 /* mux delay */
3677 writel((RW_MGR_IDLE << 24) | (RW_MGR_ACTIVATE_1 << 16) |
3678 (RW_MGR_SGLE_READ << 8) | (RW_MGR_PRECHARGE_ALL << 0),
3679 &sdr_reg_file->trk_rw_mgr_addr);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003680
Marek Vasut880e46f2015-07-17 00:45:11 +02003681 writel(RW_MGR_MEM_IF_READ_DQS_WIDTH,
3682 &sdr_reg_file->trk_read_dqs_width);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003683
Marek Vasut880e46f2015-07-17 00:45:11 +02003684 /* trefi [7:0] */
3685 writel((RW_MGR_REFRESH_ALL << 24) | (1000 << 0),
3686 &sdr_reg_file->trk_rfsh);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003687}
3688
3689int sdram_calibration_full(void)
3690{
3691 struct param_type my_param;
3692 struct gbl_type my_gbl;
3693 uint32_t pass;
Marek Vasut84e0b0c2015-07-17 01:05:36 +02003694
3695 memset(&my_param, 0, sizeof(my_param));
3696 memset(&my_gbl, 0, sizeof(my_gbl));
Dinh Nguyen3da42852015-06-02 22:52:49 -05003697
3698 param = &my_param;
3699 gbl = &my_gbl;
3700
Marek Vasutd718a262015-08-02 18:12:08 +02003701 rwcfg = socfpga_get_sdram_rwmgr_config();
3702
Dinh Nguyen3da42852015-06-02 22:52:49 -05003703 /* Set the calibration enabled by default */
3704 gbl->phy_debug_mode_flags |= PHY_DEBUG_ENABLE_CAL_RPT;
3705 /*
3706 * Only sweep all groups (regardless of fail state) by default
3707 * Set enabled read test by default.
3708 */
3709#if DISABLE_GUARANTEED_READ
3710 gbl->phy_debug_mode_flags |= PHY_DEBUG_DISABLE_GUARANTEED_READ;
3711#endif
3712 /* Initialize the register file */
3713 initialize_reg_file();
3714
3715 /* Initialize any PHY CSR */
3716 initialize_hps_phy();
3717
3718 scc_mgr_initialize();
3719
3720 initialize_tracking();
3721
Dinh Nguyen3da42852015-06-02 22:52:49 -05003722 printf("%s: Preparing to start memory calibration\n", __FILE__);
3723
3724 debug("%s:%d\n", __func__, __LINE__);
Marek Vasut23f62b32015-07-13 01:05:27 +02003725 debug_cond(DLEVEL == 1,
3726 "DDR3 FULL_RATE ranks=%u cs/dimm=%u dq/dqs=%u,%u vg/dqs=%u,%u ",
3727 RW_MGR_MEM_NUMBER_OF_RANKS, RW_MGR_MEM_NUMBER_OF_CS_PER_DIMM,
3728 RW_MGR_MEM_DQ_PER_READ_DQS, RW_MGR_MEM_DQ_PER_WRITE_DQS,
3729 RW_MGR_MEM_VIRTUAL_GROUPS_PER_READ_DQS,
3730 RW_MGR_MEM_VIRTUAL_GROUPS_PER_WRITE_DQS);
3731 debug_cond(DLEVEL == 1,
3732 "dqs=%u,%u dq=%u dm=%u ptap_delay=%u dtap_delay=%u ",
3733 RW_MGR_MEM_IF_READ_DQS_WIDTH, RW_MGR_MEM_IF_WRITE_DQS_WIDTH,
3734 RW_MGR_MEM_DATA_WIDTH, RW_MGR_MEM_DATA_MASK_WIDTH,
3735 IO_DELAY_PER_OPA_TAP, IO_DELAY_PER_DCHAIN_TAP);
3736 debug_cond(DLEVEL == 1, "dtap_dqsen_delay=%u, dll=%u",
3737 IO_DELAY_PER_DQS_EN_DCHAIN_TAP, IO_DLL_CHAIN_LENGTH);
3738 debug_cond(DLEVEL == 1, "max values: en_p=%u dqdqs_p=%u en_d=%u dqs_in_d=%u ",
3739 IO_DQS_EN_PHASE_MAX, IO_DQDQS_OUT_PHASE_MAX,
3740 IO_DQS_EN_DELAY_MAX, IO_DQS_IN_DELAY_MAX);
3741 debug_cond(DLEVEL == 1, "io_in_d=%u io_out1_d=%u io_out2_d=%u ",
3742 IO_IO_IN_DELAY_MAX, IO_IO_OUT1_DELAY_MAX,
3743 IO_IO_OUT2_DELAY_MAX);
3744 debug_cond(DLEVEL == 1, "dqs_in_reserve=%u dqs_out_reserve=%u\n",
3745 IO_DQS_IN_RESERVE, IO_DQS_OUT_RESERVE);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003746
3747 hc_initialize_rom_data();
3748
3749 /* update info for sims */
3750 reg_file_set_stage(CAL_STAGE_NIL);
3751 reg_file_set_group(0);
3752
3753 /*
3754 * Load global needed for those actions that require
3755 * some dynamic calibration support.
3756 */
3757 dyn_calib_steps = STATIC_CALIB_STEPS;
3758 /*
3759 * Load global to allow dynamic selection of delay loop settings
3760 * based on calibration mode.
3761 */
3762 if (!(dyn_calib_steps & CALIB_SKIP_DELAY_LOOPS))
3763 skip_delay_mask = 0xff;
3764 else
3765 skip_delay_mask = 0x0;
3766
3767 pass = run_mem_calibrate();
Marek Vasut23a040c2015-07-17 01:20:21 +02003768 debug_mem_calibrate(pass);
Dinh Nguyen3da42852015-06-02 22:52:49 -05003769 return pass;
3770}