blob: 98ccbb70de730cb64e33c3961ee52683640f981b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002/*
York Sunc0c32af2018-01-29 09:44:35 -08003 * Copyright 2008-2016 Freescale Semiconductor, Inc.
4 * Copyright 2017-2018 NXP Semiconductor
Kumar Gala58e5e9a2008-08-26 15:01:29 -05005 */
6
7/*
Shengzhou Liu02fb2762016-11-21 11:36:48 +08008 * Generic driver for Freescale DDR/DDR2/DDR3/DDR4 memory controller.
Kumar Gala58e5e9a2008-08-26 15:01:29 -05009 * Based on code from spd_sdram.c
10 * Author: James Yang [at freescale.com]
11 */
12
13#include <common.h>
York Sun5614e712013-09-30 09:22:09 -070014#include <fsl_ddr_sdram.h>
Shengzhou Liu02fb2762016-11-21 11:36:48 +080015#include <fsl_errata.h>
York Sun5614e712013-09-30 09:22:09 -070016#include <fsl_ddr.h>
York Sun9a17eb52013-11-18 10:29:32 -080017#include <fsl_immap.h>
York Sun5614e712013-09-30 09:22:09 -070018#include <asm/io.h>
Simon Glass457e51c2017-05-17 08:23:10 -060019#if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3) || \
20 defined(CONFIG_ARM)
Simon Glass6e2941d2017-05-17 08:23:06 -060021#include <asm/arch/clock.h>
22#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -050023
Kumar Gala58e5e9a2008-08-26 15:01:29 -050024/*
25 * Determine Rtt value.
26 *
27 * This should likely be either board or controller specific.
28 *
Dave Liuc360cea2009-03-14 12:48:30 +080029 * Rtt(nominal) - DDR2:
Kumar Gala58e5e9a2008-08-26 15:01:29 -050030 * 0 = Rtt disabled
31 * 1 = 75 ohm
32 * 2 = 150 ohm
33 * 3 = 50 ohm
Dave Liuc360cea2009-03-14 12:48:30 +080034 * Rtt(nominal) - DDR3:
35 * 0 = Rtt disabled
36 * 1 = 60 ohm
37 * 2 = 120 ohm
38 * 3 = 40 ohm
39 * 4 = 20 ohm
40 * 5 = 30 ohm
Kumar Gala58e5e9a2008-08-26 15:01:29 -050041 *
42 * FIXME: Apparently 8641 needs a value of 2
43 * FIXME: Old code seys if 667 MHz or higher, use 3 on 8572
44 *
45 * FIXME: There was some effort down this line earlier:
46 *
47 * unsigned int i;
48 * for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL/2; i++) {
49 * if (popts->dimmslot[i].num_valid_cs
50 * && (popts->cs_local_opts[2*i].odt_rd_cfg
51 * || popts->cs_local_opts[2*i].odt_wr_cfg)) {
52 * rtt = 2;
53 * break;
54 * }
55 * }
56 */
57static inline int fsl_ddr_get_rtt(void)
58{
59 int rtt;
60
York Sun5614e712013-09-30 09:22:09 -070061#if defined(CONFIG_SYS_FSL_DDR1)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050062 rtt = 0;
York Sun5614e712013-09-30 09:22:09 -070063#elif defined(CONFIG_SYS_FSL_DDR2)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050064 rtt = 3;
65#else
Dave Liuc360cea2009-03-14 12:48:30 +080066 rtt = 0;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050067#endif
68
69 return rtt;
70}
71
York Sun34e026f2014-03-27 17:54:47 -070072#ifdef CONFIG_SYS_FSL_DDR4
73/*
74 * compute CAS write latency according to DDR4 spec
75 * CWL = 9 for <= 1600MT/s
76 * 10 for <= 1866MT/s
77 * 11 for <= 2133MT/s
78 * 12 for <= 2400MT/s
79 * 14 for <= 2667MT/s
80 * 16 for <= 2933MT/s
81 * 18 for higher
82 */
York Sun03e664d2015-01-06 13:18:50 -080083static inline unsigned int compute_cas_write_latency(
84 const unsigned int ctrl_num)
York Sun34e026f2014-03-27 17:54:47 -070085{
86 unsigned int cwl;
York Sun03e664d2015-01-06 13:18:50 -080087 const unsigned int mclk_ps = get_memory_clk_period_ps(ctrl_num);
York Sun34e026f2014-03-27 17:54:47 -070088 if (mclk_ps >= 1250)
89 cwl = 9;
90 else if (mclk_ps >= 1070)
91 cwl = 10;
92 else if (mclk_ps >= 935)
93 cwl = 11;
94 else if (mclk_ps >= 833)
95 cwl = 12;
96 else if (mclk_ps >= 750)
97 cwl = 14;
98 else if (mclk_ps >= 681)
99 cwl = 16;
100 else
101 cwl = 18;
102
103 return cwl;
104}
105#else
Dave Liuc360cea2009-03-14 12:48:30 +0800106/*
107 * compute the CAS write latency according to DDR3 spec
108 * CWL = 5 if tCK >= 2.5ns
109 * 6 if 2.5ns > tCK >= 1.875ns
110 * 7 if 1.875ns > tCK >= 1.5ns
111 * 8 if 1.5ns > tCK >= 1.25ns
York Sun2bba85f2011-08-24 09:40:25 -0700112 * 9 if 1.25ns > tCK >= 1.07ns
113 * 10 if 1.07ns > tCK >= 0.935ns
114 * 11 if 0.935ns > tCK >= 0.833ns
115 * 12 if 0.833ns > tCK >= 0.75ns
Dave Liuc360cea2009-03-14 12:48:30 +0800116 */
York Sun03e664d2015-01-06 13:18:50 -0800117static inline unsigned int compute_cas_write_latency(
118 const unsigned int ctrl_num)
Dave Liuc360cea2009-03-14 12:48:30 +0800119{
120 unsigned int cwl;
York Sun03e664d2015-01-06 13:18:50 -0800121 const unsigned int mclk_ps = get_memory_clk_period_ps(ctrl_num);
Dave Liuc360cea2009-03-14 12:48:30 +0800122
123 if (mclk_ps >= 2500)
124 cwl = 5;
125 else if (mclk_ps >= 1875)
126 cwl = 6;
127 else if (mclk_ps >= 1500)
128 cwl = 7;
129 else if (mclk_ps >= 1250)
130 cwl = 8;
York Sun2bba85f2011-08-24 09:40:25 -0700131 else if (mclk_ps >= 1070)
132 cwl = 9;
133 else if (mclk_ps >= 935)
134 cwl = 10;
135 else if (mclk_ps >= 833)
136 cwl = 11;
137 else if (mclk_ps >= 750)
138 cwl = 12;
139 else {
140 cwl = 12;
141 printf("Warning: CWL is out of range\n");
142 }
Dave Liuc360cea2009-03-14 12:48:30 +0800143 return cwl;
144}
York Sun34e026f2014-03-27 17:54:47 -0700145#endif
Dave Liuc360cea2009-03-14 12:48:30 +0800146
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500147/* Chip Select Configuration (CSn_CONFIG) */
york5800e7a2010-07-02 22:25:53 +0000148static void set_csn_config(int dimm_number, int i, fsl_ddr_cfg_regs_t *ddr,
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500149 const memctl_options_t *popts,
150 const dimm_params_t *dimm_params)
151{
152 unsigned int cs_n_en = 0; /* Chip Select enable */
153 unsigned int intlv_en = 0; /* Memory controller interleave enable */
154 unsigned int intlv_ctl = 0; /* Interleaving control */
155 unsigned int ap_n_en = 0; /* Chip select n auto-precharge enable */
156 unsigned int odt_rd_cfg = 0; /* ODT for reads configuration */
157 unsigned int odt_wr_cfg = 0; /* ODT for writes configuration */
158 unsigned int ba_bits_cs_n = 0; /* Num of bank bits for SDRAM on CSn */
159 unsigned int row_bits_cs_n = 0; /* Num of row bits for SDRAM on CSn */
160 unsigned int col_bits_cs_n = 0; /* Num of ocl bits for SDRAM on CSn */
york5800e7a2010-07-02 22:25:53 +0000161 int go_config = 0;
York Sun34e026f2014-03-27 17:54:47 -0700162#ifdef CONFIG_SYS_FSL_DDR4
163 unsigned int bg_bits_cs_n = 0; /* Num of bank group bits */
164#else
165 unsigned int n_banks_per_sdram_device;
166#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500167
168 /* Compute CS_CONFIG only for existing ranks of each DIMM. */
york5800e7a2010-07-02 22:25:53 +0000169 switch (i) {
170 case 0:
171 if (dimm_params[dimm_number].n_ranks > 0) {
172 go_config = 1;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500173 /* These fields only available in CS0_CONFIG */
York Suna4c66502012-08-17 08:22:39 +0000174 if (!popts->memctl_interleaving)
175 break;
176 switch (popts->memctl_interleaving_mode) {
York Sun6b1e1252014-02-10 13:59:44 -0800177 case FSL_DDR_256B_INTERLEAVING:
York Suna4c66502012-08-17 08:22:39 +0000178 case FSL_DDR_CACHE_LINE_INTERLEAVING:
179 case FSL_DDR_PAGE_INTERLEAVING:
180 case FSL_DDR_BANK_INTERLEAVING:
181 case FSL_DDR_SUPERBANK_INTERLEAVING:
182 intlv_en = popts->memctl_interleaving;
183 intlv_ctl = popts->memctl_interleaving_mode;
184 break;
185 default:
186 break;
187 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500188 }
york5800e7a2010-07-02 22:25:53 +0000189 break;
190 case 1:
191 if ((dimm_number == 0 && dimm_params[0].n_ranks > 1) || \
192 (dimm_number == 1 && dimm_params[1].n_ranks > 0))
193 go_config = 1;
194 break;
195 case 2:
196 if ((dimm_number == 0 && dimm_params[0].n_ranks > 2) || \
York Suncae7c1b2011-08-26 11:32:40 -0700197 (dimm_number >= 1 && dimm_params[dimm_number].n_ranks > 0))
york5800e7a2010-07-02 22:25:53 +0000198 go_config = 1;
199 break;
200 case 3:
201 if ((dimm_number == 0 && dimm_params[0].n_ranks > 3) || \
202 (dimm_number == 1 && dimm_params[1].n_ranks > 1) || \
203 (dimm_number == 3 && dimm_params[3].n_ranks > 0))
204 go_config = 1;
205 break;
206 default:
207 break;
208 }
209 if (go_config) {
york5800e7a2010-07-02 22:25:53 +0000210 cs_n_en = 1;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500211 ap_n_en = popts->cs_local_opts[i].auto_precharge;
212 odt_rd_cfg = popts->cs_local_opts[i].odt_rd_cfg;
213 odt_wr_cfg = popts->cs_local_opts[i].odt_wr_cfg;
York Sun34e026f2014-03-27 17:54:47 -0700214#ifdef CONFIG_SYS_FSL_DDR4
215 ba_bits_cs_n = dimm_params[dimm_number].bank_addr_bits;
216 bg_bits_cs_n = dimm_params[dimm_number].bank_group_bits;
217#else
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500218 n_banks_per_sdram_device
york5800e7a2010-07-02 22:25:53 +0000219 = dimm_params[dimm_number].n_banks_per_sdram_device;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500220 ba_bits_cs_n = __ilog2(n_banks_per_sdram_device) - 2;
York Sun34e026f2014-03-27 17:54:47 -0700221#endif
york5800e7a2010-07-02 22:25:53 +0000222 row_bits_cs_n = dimm_params[dimm_number].n_row_addr - 12;
223 col_bits_cs_n = dimm_params[dimm_number].n_col_addr - 8;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500224 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500225 ddr->cs[i].config = (0
226 | ((cs_n_en & 0x1) << 31)
227 | ((intlv_en & 0x3) << 29)
Haiying Wangdbbbb3a2008-10-03 12:36:39 -0400228 | ((intlv_ctl & 0xf) << 24)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500229 | ((ap_n_en & 0x1) << 23)
230
231 /* XXX: some implementation only have 1 bit starting at left */
232 | ((odt_rd_cfg & 0x7) << 20)
233
234 /* XXX: Some implementation only have 1 bit starting at left */
235 | ((odt_wr_cfg & 0x7) << 16)
236
237 | ((ba_bits_cs_n & 0x3) << 14)
238 | ((row_bits_cs_n & 0x7) << 8)
York Sun34e026f2014-03-27 17:54:47 -0700239#ifdef CONFIG_SYS_FSL_DDR4
240 | ((bg_bits_cs_n & 0x3) << 4)
241#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500242 | ((col_bits_cs_n & 0x7) << 0)
243 );
Haiying Wang1f293b42008-10-03 12:37:26 -0400244 debug("FSLDDR: cs[%d]_config = 0x%08x\n", i,ddr->cs[i].config);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500245}
246
247/* Chip Select Configuration 2 (CSn_CONFIG_2) */
248/* FIXME: 8572 */
249static void set_csn_config_2(int i, fsl_ddr_cfg_regs_t *ddr)
250{
251 unsigned int pasr_cfg = 0; /* Partial array self refresh config */
252
253 ddr->cs[i].config_2 = ((pasr_cfg & 7) << 24);
Haiying Wang1f293b42008-10-03 12:37:26 -0400254 debug("FSLDDR: cs[%d]_config_2 = 0x%08x\n", i, ddr->cs[i].config_2);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500255}
256
257/* -3E = 667 CL5, -25 = CL6 800, -25E = CL5 800 */
258
York Sun5614e712013-09-30 09:22:09 -0700259#if !defined(CONFIG_SYS_FSL_DDR1)
York Sun84baed22014-11-07 12:14:36 -0800260/*
261 * Check DIMM configuration, return 2 if quad-rank or two dual-rank
262 * Return 1 if other two slots configuration. Return 0 if single slot.
263 */
York Sun123922b2012-10-08 07:44:23 +0000264static inline int avoid_odt_overlap(const dimm_params_t *dimm_params)
265{
266#if CONFIG_DIMM_SLOTS_PER_CTLR == 1
267 if (dimm_params[0].n_ranks == 4)
York Sun84baed22014-11-07 12:14:36 -0800268 return 2;
York Sun123922b2012-10-08 07:44:23 +0000269#endif
270
271#if CONFIG_DIMM_SLOTS_PER_CTLR == 2
272 if ((dimm_params[0].n_ranks == 2) &&
273 (dimm_params[1].n_ranks == 2))
York Sun84baed22014-11-07 12:14:36 -0800274 return 2;
York Sun123922b2012-10-08 07:44:23 +0000275
276#ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
277 if (dimm_params[0].n_ranks == 4)
York Sun84baed22014-11-07 12:14:36 -0800278 return 2;
York Sun123922b2012-10-08 07:44:23 +0000279#endif
York Sun84baed22014-11-07 12:14:36 -0800280
281 if ((dimm_params[0].n_ranks != 0) &&
282 (dimm_params[2].n_ranks != 0))
283 return 1;
York Sun123922b2012-10-08 07:44:23 +0000284#endif
285 return 0;
286}
287
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500288/*
289 * DDR SDRAM Timing Configuration 0 (TIMING_CFG_0)
290 *
291 * Avoid writing for DDR I. The new PQ38 DDR controller
292 * dreams up non-zero default values to be backwards compatible.
293 */
York Sun03e664d2015-01-06 13:18:50 -0800294static void set_timing_cfg_0(const unsigned int ctrl_num,
295 fsl_ddr_cfg_regs_t *ddr,
York Sun123922b2012-10-08 07:44:23 +0000296 const memctl_options_t *popts,
297 const dimm_params_t *dimm_params)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500298{
299 unsigned char trwt_mclk = 0; /* Read-to-write turnaround */
300 unsigned char twrt_mclk = 0; /* Write-to-read turnaround */
301 /* 7.5 ns on -3E; 0 means WL - CL + BL/2 + 1 */
302 unsigned char trrt_mclk = 0; /* Read-to-read turnaround */
303 unsigned char twwt_mclk = 0; /* Write-to-write turnaround */
304
305 /* Active powerdown exit timing (tXARD and tXARDS). */
306 unsigned char act_pd_exit_mclk;
307 /* Precharge powerdown exit timing (tXP). */
308 unsigned char pre_pd_exit_mclk;
york5fb8a8a2010-07-02 22:25:56 +0000309 /* ODT powerdown exit timing (tAXPD). */
York Sun34e026f2014-03-27 17:54:47 -0700310 unsigned char taxpd_mclk = 0;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500311 /* Mode register set cycle time (tMRD). */
312 unsigned char tmrd_mclk;
York Sunbb578322014-08-21 16:13:22 -0700313#if defined(CONFIG_SYS_FSL_DDR4) || defined(CONFIG_SYS_FSL_DDR3)
York Sun03e664d2015-01-06 13:18:50 -0800314 const unsigned int mclk_ps = get_memory_clk_period_ps(ctrl_num);
York Sunbb578322014-08-21 16:13:22 -0700315#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500316
York Sun34e026f2014-03-27 17:54:47 -0700317#ifdef CONFIG_SYS_FSL_DDR4
318 /* tXP=max(4nCK, 6ns) */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900319 int txp = max((int)mclk_ps * 4, 6000); /* unit=ps */
York Sun66869f92015-03-19 09:30:26 -0700320 unsigned int data_rate = get_ddr_freq(ctrl_num);
321
322 /* for faster clock, need more time for data setup */
323 trwt_mclk = (data_rate/1000000 > 1900) ? 3 : 2;
York Sun6c6e0062015-11-04 10:03:21 -0800324
325 /*
326 * for single quad-rank DIMM and two-slot DIMMs
327 * to avoid ODT overlap
328 */
329 switch (avoid_odt_overlap(dimm_params)) {
330 case 2:
331 twrt_mclk = 2;
332 twwt_mclk = 2;
333 trrt_mclk = 2;
334 break;
335 default:
336 twrt_mclk = 1;
337 twwt_mclk = 1;
338 trrt_mclk = 0;
339 break;
340 }
341
York Sun03e664d2015-01-06 13:18:50 -0800342 act_pd_exit_mclk = picos_to_mclk(ctrl_num, txp);
York Sun34e026f2014-03-27 17:54:47 -0700343 pre_pd_exit_mclk = act_pd_exit_mclk;
344 /*
345 * MRS_CYC = max(tMRD, tMOD)
346 * tMRD = 8nCK, tMOD = max(24nCK, 15ns)
347 */
York Sun03e664d2015-01-06 13:18:50 -0800348 tmrd_mclk = max(24U, picos_to_mclk(ctrl_num, 15000));
York Sun34e026f2014-03-27 17:54:47 -0700349#elif defined(CONFIG_SYS_FSL_DDR3)
York Sun03e664d2015-01-06 13:18:50 -0800350 unsigned int data_rate = get_ddr_freq(ctrl_num);
York Sunbb578322014-08-21 16:13:22 -0700351 int txp;
York Sun938bbb62014-12-02 11:18:09 -0800352 unsigned int ip_rev;
York Sun84baed22014-11-07 12:14:36 -0800353 int odt_overlap;
Dave Liuc360cea2009-03-14 12:48:30 +0800354 /*
355 * (tXARD and tXARDS). Empirical?
356 * The DDR3 spec has not tXARD,
357 * we use the tXP instead of it.
York Sunbb578322014-08-21 16:13:22 -0700358 * tXP=max(3nCK, 7.5ns) for DDR3-800, 1066
359 * max(3nCK, 6ns) for DDR3-1333, 1600, 1866, 2133
Dave Liuc360cea2009-03-14 12:48:30 +0800360 * spec has not the tAXPD, we use
york5fb8a8a2010-07-02 22:25:56 +0000361 * tAXPD=1, need design to confirm.
Dave Liuc360cea2009-03-14 12:48:30 +0800362 */
Masahiro Yamadab4141192014-11-07 03:03:31 +0900363 txp = max((int)mclk_ps * 3, (mclk_ps > 1540 ? 7500 : 6000));
York Sunbb578322014-08-21 16:13:22 -0700364
York Sun66869f92015-03-19 09:30:26 -0700365 ip_rev = fsl_ddr_get_version(ctrl_num);
York Sun938bbb62014-12-02 11:18:09 -0800366 if (ip_rev >= 0x40700) {
367 /*
368 * MRS_CYC = max(tMRD, tMOD)
369 * tMRD = 4nCK (8nCK for RDIMM)
370 * tMOD = max(12nCK, 15ns)
371 */
York Sun03e664d2015-01-06 13:18:50 -0800372 tmrd_mclk = max((unsigned int)12,
373 picos_to_mclk(ctrl_num, 15000));
York Sun938bbb62014-12-02 11:18:09 -0800374 } else {
375 /*
376 * MRS_CYC = tMRD
377 * tMRD = 4nCK (8nCK for RDIMM)
378 */
379 if (popts->registered_dimm_en)
380 tmrd_mclk = 8;
381 else
382 tmrd_mclk = 4;
383 }
384
Dave Liu99bac472009-12-08 11:56:48 +0800385 /* set the turnaround time */
York Sun123922b2012-10-08 07:44:23 +0000386
387 /*
York Sun84baed22014-11-07 12:14:36 -0800388 * for single quad-rank DIMM and two-slot DIMMs
York Sun123922b2012-10-08 07:44:23 +0000389 * to avoid ODT overlap
390 */
York Sun84baed22014-11-07 12:14:36 -0800391 odt_overlap = avoid_odt_overlap(dimm_params);
392 switch (odt_overlap) {
393 case 2:
York Sun123922b2012-10-08 07:44:23 +0000394 twwt_mclk = 2;
395 trrt_mclk = 1;
York Sun84baed22014-11-07 12:14:36 -0800396 break;
397 case 1:
398 twwt_mclk = 1;
399 trrt_mclk = 0;
400 break;
401 default:
402 break;
York Sun123922b2012-10-08 07:44:23 +0000403 }
York Sun84baed22014-11-07 12:14:36 -0800404
York Sun123922b2012-10-08 07:44:23 +0000405 /* for faster clock, need more time for data setup */
406 trwt_mclk = (data_rate/1000000 > 1800) ? 2 : 1;
407
York Sun856e4b02011-02-10 10:13:10 -0800408 if ((data_rate/1000000 > 1150) || (popts->memctl_interleaving))
409 twrt_mclk = 1;
York Sune1fd16b2011-01-10 12:03:00 +0000410
411 if (popts->dynamic_power == 0) { /* powerdown is not used */
412 act_pd_exit_mclk = 1;
413 pre_pd_exit_mclk = 1;
414 taxpd_mclk = 1;
415 } else {
416 /* act_pd_exit_mclk = tXARD, see above */
York Sun03e664d2015-01-06 13:18:50 -0800417 act_pd_exit_mclk = picos_to_mclk(ctrl_num, txp);
York Sune1fd16b2011-01-10 12:03:00 +0000418 /* Mode register MR0[A12] is '1' - fast exit */
419 pre_pd_exit_mclk = act_pd_exit_mclk;
420 taxpd_mclk = 1;
421 }
York Sun5614e712013-09-30 09:22:09 -0700422#else /* CONFIG_SYS_FSL_DDR2 */
Dave Liuc360cea2009-03-14 12:48:30 +0800423 /*
424 * (tXARD and tXARDS). Empirical?
425 * tXARD = 2 for DDR2
426 * tXP=2
427 * tAXPD=8
428 */
429 act_pd_exit_mclk = 2;
430 pre_pd_exit_mclk = 2;
431 taxpd_mclk = 8;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500432 tmrd_mclk = 2;
Dave Liuc360cea2009-03-14 12:48:30 +0800433#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500434
York Sun23f96702011-05-27 13:44:28 +0800435 if (popts->trwt_override)
436 trwt_mclk = popts->trwt;
437
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500438 ddr->timing_cfg_0 = (0
439 | ((trwt_mclk & 0x3) << 30) /* RWT */
440 | ((twrt_mclk & 0x3) << 28) /* WRT */
441 | ((trrt_mclk & 0x3) << 26) /* RRT */
442 | ((twwt_mclk & 0x3) << 24) /* WWT */
York Sund4263b82013-06-03 12:39:06 -0700443 | ((act_pd_exit_mclk & 0xf) << 20) /* ACT_PD_EXIT */
Dave Liu22ff3d02008-11-21 16:31:29 +0800444 | ((pre_pd_exit_mclk & 0xF) << 16) /* PRE_PD_EXIT */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500445 | ((taxpd_mclk & 0xf) << 8) /* ODT_PD_EXIT */
York Sund4263b82013-06-03 12:39:06 -0700446 | ((tmrd_mclk & 0x1f) << 0) /* MRS_CYC */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500447 );
448 debug("FSLDDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0);
449}
York Sun84baed22014-11-07 12:14:36 -0800450#endif /* !defined(CONFIG_SYS_FSL_DDR1) */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500451
452/* DDR SDRAM Timing Configuration 3 (TIMING_CFG_3) */
York Sun03e664d2015-01-06 13:18:50 -0800453static void set_timing_cfg_3(const unsigned int ctrl_num,
454 fsl_ddr_cfg_regs_t *ddr,
455 const memctl_options_t *popts,
456 const common_timing_params_t *common_dimm,
457 unsigned int cas_latency,
458 unsigned int additive_latency)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500459{
York Sun45064ad2012-08-17 08:22:40 +0000460 /* Extended precharge to activate interval (tRP) */
461 unsigned int ext_pretoact = 0;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500462 /* Extended Activate to precharge interval (tRAS) */
463 unsigned int ext_acttopre = 0;
York Sun45064ad2012-08-17 08:22:40 +0000464 /* Extended activate to read/write interval (tRCD) */
465 unsigned int ext_acttorw = 0;
466 /* Extended refresh recovery time (tRFC) */
467 unsigned int ext_refrec;
468 /* Extended MCAS latency from READ cmd */
469 unsigned int ext_caslat = 0;
York Sund4263b82013-06-03 12:39:06 -0700470 /* Extended additive latency */
471 unsigned int ext_add_lat = 0;
York Sun45064ad2012-08-17 08:22:40 +0000472 /* Extended last data to precharge interval (tWR) */
473 unsigned int ext_wrrec = 0;
474 /* Control Adjust */
475 unsigned int cntl_adj = 0;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500476
York Sun03e664d2015-01-06 13:18:50 -0800477 ext_pretoact = picos_to_mclk(ctrl_num, common_dimm->trp_ps) >> 4;
478 ext_acttopre = picos_to_mclk(ctrl_num, common_dimm->tras_ps) >> 4;
479 ext_acttorw = picos_to_mclk(ctrl_num, common_dimm->trcd_ps) >> 4;
York Sun45064ad2012-08-17 08:22:40 +0000480 ext_caslat = (2 * cas_latency - 1) >> 4;
York Sund4263b82013-06-03 12:39:06 -0700481 ext_add_lat = additive_latency >> 4;
York Sun34e026f2014-03-27 17:54:47 -0700482#ifdef CONFIG_SYS_FSL_DDR4
York Sun03e664d2015-01-06 13:18:50 -0800483 ext_refrec = (picos_to_mclk(ctrl_num, common_dimm->trfc1_ps) - 8) >> 4;
York Sun34e026f2014-03-27 17:54:47 -0700484#else
York Sun03e664d2015-01-06 13:18:50 -0800485 ext_refrec = (picos_to_mclk(ctrl_num, common_dimm->trfc_ps) - 8) >> 4;
York Sun45064ad2012-08-17 08:22:40 +0000486 /* ext_wrrec only deals with 16 clock and above, or 14 with OTF */
York Sun34e026f2014-03-27 17:54:47 -0700487#endif
York Sun03e664d2015-01-06 13:18:50 -0800488 ext_wrrec = (picos_to_mclk(ctrl_num, common_dimm->twr_ps) +
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530489 (popts->otf_burst_chop_en ? 2 : 0)) >> 4;
Dave Liuc360cea2009-03-14 12:48:30 +0800490
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500491 ddr->timing_cfg_3 = (0
York Sun45064ad2012-08-17 08:22:40 +0000492 | ((ext_pretoact & 0x1) << 28)
James Yangc45f5c02013-07-22 09:35:26 -0700493 | ((ext_acttopre & 0x3) << 24)
York Sun45064ad2012-08-17 08:22:40 +0000494 | ((ext_acttorw & 0x1) << 22)
York Sunc0c32af2018-01-29 09:44:35 -0800495 | ((ext_refrec & 0x3F) << 16)
York Sun45064ad2012-08-17 08:22:40 +0000496 | ((ext_caslat & 0x3) << 12)
York Sund4263b82013-06-03 12:39:06 -0700497 | ((ext_add_lat & 0x1) << 10)
York Sun45064ad2012-08-17 08:22:40 +0000498 | ((ext_wrrec & 0x1) << 8)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500499 | ((cntl_adj & 0x7) << 0)
500 );
Haiying Wang1f293b42008-10-03 12:37:26 -0400501 debug("FSLDDR: timing_cfg_3 = 0x%08x\n", ddr->timing_cfg_3);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500502}
503
504/* DDR SDRAM Timing Configuration 1 (TIMING_CFG_1) */
York Sun03e664d2015-01-06 13:18:50 -0800505static void set_timing_cfg_1(const unsigned int ctrl_num,
506 fsl_ddr_cfg_regs_t *ddr,
507 const memctl_options_t *popts,
508 const common_timing_params_t *common_dimm,
509 unsigned int cas_latency)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500510{
511 /* Precharge-to-activate interval (tRP) */
512 unsigned char pretoact_mclk;
513 /* Activate to precharge interval (tRAS) */
514 unsigned char acttopre_mclk;
515 /* Activate to read/write interval (tRCD) */
516 unsigned char acttorw_mclk;
517 /* CASLAT */
518 unsigned char caslat_ctrl;
519 /* Refresh recovery time (tRFC) ; trfc_low */
520 unsigned char refrec_ctrl;
521 /* Last data to precharge minimum interval (tWR) */
522 unsigned char wrrec_mclk;
523 /* Activate-to-activate interval (tRRD) */
524 unsigned char acttoact_mclk;
525 /* Last write data pair to read command issue interval (tWTR) */
526 unsigned char wrtord_mclk;
York Sun34e026f2014-03-27 17:54:47 -0700527#ifdef CONFIG_SYS_FSL_DDR4
528 /* DDR4 supports 10, 12, 14, 16, 18, 20, 24 */
529 static const u8 wrrec_table[] = {
530 10, 10, 10, 10, 10,
531 10, 10, 10, 10, 10,
532 12, 12, 14, 14, 16,
533 16, 18, 18, 20, 20,
534 24, 24, 24, 24};
535#else
York Sunf5b6fb72011-03-02 14:24:11 -0800536 /* DDR_SDRAM_MODE doesn't support 9,11,13,15 */
537 static const u8 wrrec_table[] = {
538 1, 2, 3, 4, 5, 6, 7, 8, 10, 10, 12, 12, 14, 14, 0, 0};
York Sun34e026f2014-03-27 17:54:47 -0700539#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500540
York Sun03e664d2015-01-06 13:18:50 -0800541 pretoact_mclk = picos_to_mclk(ctrl_num, common_dimm->trp_ps);
542 acttopre_mclk = picos_to_mclk(ctrl_num, common_dimm->tras_ps);
543 acttorw_mclk = picos_to_mclk(ctrl_num, common_dimm->trcd_ps);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500544
545 /*
546 * Translate CAS Latency to a DDR controller field value:
547 *
548 * CAS Lat DDR I DDR II Ctrl
549 * Clocks SPD Bit SPD Bit Value
550 * ------- ------- ------- -----
551 * 1.0 0 0001
552 * 1.5 1 0010
553 * 2.0 2 2 0011
554 * 2.5 3 0100
555 * 3.0 4 3 0101
556 * 3.5 5 0110
557 * 4.0 4 0111
558 * 4.5 1000
559 * 5.0 5 1001
560 */
York Sun5614e712013-09-30 09:22:09 -0700561#if defined(CONFIG_SYS_FSL_DDR1)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500562 caslat_ctrl = (cas_latency + 1) & 0x07;
York Sun5614e712013-09-30 09:22:09 -0700563#elif defined(CONFIG_SYS_FSL_DDR2)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500564 caslat_ctrl = 2 * cas_latency - 1;
565#else
Dave Liuc360cea2009-03-14 12:48:30 +0800566 /*
567 * if the CAS latency more than 8 cycle,
568 * we need set extend bit for it at
569 * TIMING_CFG_3[EXT_CASLAT]
570 */
York Sun66869f92015-03-19 09:30:26 -0700571 if (fsl_ddr_get_version(ctrl_num) <= 0x40400)
York Sun34e026f2014-03-27 17:54:47 -0700572 caslat_ctrl = 2 * cas_latency - 1;
573 else
574 caslat_ctrl = (cas_latency - 1) << 1;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500575#endif
576
York Sun34e026f2014-03-27 17:54:47 -0700577#ifdef CONFIG_SYS_FSL_DDR4
York Sun03e664d2015-01-06 13:18:50 -0800578 refrec_ctrl = picos_to_mclk(ctrl_num, common_dimm->trfc1_ps) - 8;
579 wrrec_mclk = picos_to_mclk(ctrl_num, common_dimm->twr_ps);
580 acttoact_mclk = max(picos_to_mclk(ctrl_num, common_dimm->trrds_ps), 4U);
581 wrtord_mclk = max(2U, picos_to_mclk(ctrl_num, 2500));
York Sun349689b2014-04-01 14:20:49 -0700582 if ((wrrec_mclk < 1) || (wrrec_mclk > 24))
583 printf("Error: WRREC doesn't support %d clocks\n", wrrec_mclk);
York Sun34e026f2014-03-27 17:54:47 -0700584 else
585 wrrec_mclk = wrrec_table[wrrec_mclk - 1];
586#else
York Sun03e664d2015-01-06 13:18:50 -0800587 refrec_ctrl = picos_to_mclk(ctrl_num, common_dimm->trfc_ps) - 8;
588 wrrec_mclk = picos_to_mclk(ctrl_num, common_dimm->twr_ps);
589 acttoact_mclk = picos_to_mclk(ctrl_num, common_dimm->trrd_ps);
590 wrtord_mclk = picos_to_mclk(ctrl_num, common_dimm->twtr_ps);
York Sun349689b2014-04-01 14:20:49 -0700591 if ((wrrec_mclk < 1) || (wrrec_mclk > 16))
592 printf("Error: WRREC doesn't support %d clocks\n", wrrec_mclk);
York Sun45064ad2012-08-17 08:22:40 +0000593 else
594 wrrec_mclk = wrrec_table[wrrec_mclk - 1];
York Sun34e026f2014-03-27 17:54:47 -0700595#endif
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530596 if (popts->otf_burst_chop_en)
Dave Liuc360cea2009-03-14 12:48:30 +0800597 wrrec_mclk += 2;
598
Dave Liuc360cea2009-03-14 12:48:30 +0800599 /*
600 * JEDEC has min requirement for tRRD
601 */
York Sun5614e712013-09-30 09:22:09 -0700602#if defined(CONFIG_SYS_FSL_DDR3)
Dave Liuc360cea2009-03-14 12:48:30 +0800603 if (acttoact_mclk < 4)
604 acttoact_mclk = 4;
605#endif
Dave Liuc360cea2009-03-14 12:48:30 +0800606 /*
607 * JEDEC has some min requirements for tWTR
608 */
York Sun5614e712013-09-30 09:22:09 -0700609#if defined(CONFIG_SYS_FSL_DDR2)
Dave Liuc360cea2009-03-14 12:48:30 +0800610 if (wrtord_mclk < 2)
611 wrtord_mclk = 2;
York Sun5614e712013-09-30 09:22:09 -0700612#elif defined(CONFIG_SYS_FSL_DDR3)
Dave Liuc360cea2009-03-14 12:48:30 +0800613 if (wrtord_mclk < 4)
614 wrtord_mclk = 4;
615#endif
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530616 if (popts->otf_burst_chop_en)
Dave Liuc360cea2009-03-14 12:48:30 +0800617 wrtord_mclk += 2;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500618
619 ddr->timing_cfg_1 = (0
Dave Liu80ee3ce2008-11-21 16:31:22 +0800620 | ((pretoact_mclk & 0x0F) << 28)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500621 | ((acttopre_mclk & 0x0F) << 24)
Dave Liu80ee3ce2008-11-21 16:31:22 +0800622 | ((acttorw_mclk & 0xF) << 20)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500623 | ((caslat_ctrl & 0xF) << 16)
624 | ((refrec_ctrl & 0xF) << 12)
Dave Liu80ee3ce2008-11-21 16:31:22 +0800625 | ((wrrec_mclk & 0x0F) << 8)
York Sun57495e42012-10-08 07:44:22 +0000626 | ((acttoact_mclk & 0x0F) << 4)
627 | ((wrtord_mclk & 0x0F) << 0)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500628 );
Haiying Wang1f293b42008-10-03 12:37:26 -0400629 debug("FSLDDR: timing_cfg_1 = 0x%08x\n", ddr->timing_cfg_1);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500630}
631
632/* DDR SDRAM Timing Configuration 2 (TIMING_CFG_2) */
York Sun03e664d2015-01-06 13:18:50 -0800633static void set_timing_cfg_2(const unsigned int ctrl_num,
634 fsl_ddr_cfg_regs_t *ddr,
635 const memctl_options_t *popts,
636 const common_timing_params_t *common_dimm,
637 unsigned int cas_latency,
638 unsigned int additive_latency)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500639{
640 /* Additive latency */
641 unsigned char add_lat_mclk;
642 /* CAS-to-preamble override */
643 unsigned short cpo;
644 /* Write latency */
645 unsigned char wr_lat;
646 /* Read to precharge (tRTP) */
647 unsigned char rd_to_pre;
648 /* Write command to write data strobe timing adjustment */
649 unsigned char wr_data_delay;
650 /* Minimum CKE pulse width (tCKE) */
651 unsigned char cke_pls;
652 /* Window for four activates (tFAW) */
653 unsigned short four_act;
York Sunbb578322014-08-21 16:13:22 -0700654#ifdef CONFIG_SYS_FSL_DDR3
York Sun03e664d2015-01-06 13:18:50 -0800655 const unsigned int mclk_ps = get_memory_clk_period_ps(ctrl_num);
York Sunbb578322014-08-21 16:13:22 -0700656#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500657
658 /* FIXME add check that this must be less than acttorw_mclk */
659 add_lat_mclk = additive_latency;
660 cpo = popts->cpo_override;
661
York Sun5614e712013-09-30 09:22:09 -0700662#if defined(CONFIG_SYS_FSL_DDR1)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500663 /*
664 * This is a lie. It should really be 1, but if it is
665 * set to 1, bits overlap into the old controller's
666 * otherwise unused ACSM field. If we leave it 0, then
667 * the HW will magically treat it as 1 for DDR 1. Oh Yea.
668 */
669 wr_lat = 0;
York Sun5614e712013-09-30 09:22:09 -0700670#elif defined(CONFIG_SYS_FSL_DDR2)
Dave Liu6a819782009-03-14 12:48:19 +0800671 wr_lat = cas_latency - 1;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500672#else
York Sun03e664d2015-01-06 13:18:50 -0800673 wr_lat = compute_cas_write_latency(ctrl_num);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500674#endif
675
York Sun34e026f2014-03-27 17:54:47 -0700676#ifdef CONFIG_SYS_FSL_DDR4
York Sun03e664d2015-01-06 13:18:50 -0800677 rd_to_pre = picos_to_mclk(ctrl_num, 7500);
York Sun34e026f2014-03-27 17:54:47 -0700678#else
York Sun03e664d2015-01-06 13:18:50 -0800679 rd_to_pre = picos_to_mclk(ctrl_num, common_dimm->trtp_ps);
York Sun34e026f2014-03-27 17:54:47 -0700680#endif
Dave Liuc360cea2009-03-14 12:48:30 +0800681 /*
682 * JEDEC has some min requirements for tRTP
683 */
York Sun5614e712013-09-30 09:22:09 -0700684#if defined(CONFIG_SYS_FSL_DDR2)
Dave Liuc360cea2009-03-14 12:48:30 +0800685 if (rd_to_pre < 2)
686 rd_to_pre = 2;
York Sun34e026f2014-03-27 17:54:47 -0700687#elif defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
Dave Liuc360cea2009-03-14 12:48:30 +0800688 if (rd_to_pre < 4)
689 rd_to_pre = 4;
Dave Liu6a819782009-03-14 12:48:19 +0800690#endif
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530691 if (popts->otf_burst_chop_en)
Dave Liuc360cea2009-03-14 12:48:30 +0800692 rd_to_pre += 2; /* according to UM */
693
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500694 wr_data_delay = popts->write_data_delay;
York Sun34e026f2014-03-27 17:54:47 -0700695#ifdef CONFIG_SYS_FSL_DDR4
696 cpo = 0;
York Sun03e664d2015-01-06 13:18:50 -0800697 cke_pls = max(3U, picos_to_mclk(ctrl_num, 5000));
York Sunbb578322014-08-21 16:13:22 -0700698#elif defined(CONFIG_SYS_FSL_DDR3)
699 /*
700 * cke pulse = max(3nCK, 7.5ns) for DDR3-800
701 * max(3nCK, 5.625ns) for DDR3-1066, 1333
702 * max(3nCK, 5ns) for DDR3-1600, 1866, 2133
703 */
York Sun03e664d2015-01-06 13:18:50 -0800704 cke_pls = max(3U, picos_to_mclk(ctrl_num, mclk_ps > 1870 ? 7500 :
705 (mclk_ps > 1245 ? 5625 : 5000)));
York Sun34e026f2014-03-27 17:54:47 -0700706#else
York Sunbb578322014-08-21 16:13:22 -0700707 cke_pls = FSL_DDR_MIN_TCKE_PULSE_WIDTH_DDR;
York Sun34e026f2014-03-27 17:54:47 -0700708#endif
York Sun03e664d2015-01-06 13:18:50 -0800709 four_act = picos_to_mclk(ctrl_num,
710 popts->tfaw_window_four_activates_ps);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500711
712 ddr->timing_cfg_2 = (0
Dave Liu22ff3d02008-11-21 16:31:29 +0800713 | ((add_lat_mclk & 0xf) << 28)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500714 | ((cpo & 0x1f) << 23)
Dave Liu22ff3d02008-11-21 16:31:29 +0800715 | ((wr_lat & 0xf) << 19)
York Sun89366912016-07-29 09:02:29 -0700716 | (((wr_lat & 0x10) >> 4) << 18)
Dave Liuc360cea2009-03-14 12:48:30 +0800717 | ((rd_to_pre & RD_TO_PRE_MASK) << RD_TO_PRE_SHIFT)
718 | ((wr_data_delay & WR_DATA_DELAY_MASK) << WR_DATA_DELAY_SHIFT)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500719 | ((cke_pls & 0x7) << 6)
Dave Liu22ff3d02008-11-21 16:31:29 +0800720 | ((four_act & 0x3f) << 0)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500721 );
Haiying Wang1f293b42008-10-03 12:37:26 -0400722 debug("FSLDDR: timing_cfg_2 = 0x%08x\n", ddr->timing_cfg_2);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500723}
724
york9490ff42010-07-02 22:25:55 +0000725/* DDR SDRAM Register Control Word */
York Sun564e9382018-01-29 10:24:08 -0800726static void set_ddr_sdram_rcw(const unsigned int ctrl_num,
727 fsl_ddr_cfg_regs_t *ddr,
728 const memctl_options_t *popts,
729 const common_timing_params_t *common_dimm)
york9490ff42010-07-02 22:25:55 +0000730{
York Sun564e9382018-01-29 10:24:08 -0800731 unsigned int ddr_freq = get_ddr_freq(ctrl_num) / 1000000;
732 unsigned int rc0a, rc0f;
733
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530734 if (common_dimm->all_dimms_registered &&
735 !common_dimm->all_dimms_unbuffered) {
York Sune1fd16b2011-01-10 12:03:00 +0000736 if (popts->rcw_override) {
737 ddr->ddr_sdram_rcw_1 = popts->rcw_1;
738 ddr->ddr_sdram_rcw_2 = popts->rcw_2;
York Sun426230a2018-01-29 09:44:33 -0800739 ddr->ddr_sdram_rcw_3 = popts->rcw_3;
York Sune1fd16b2011-01-10 12:03:00 +0000740 } else {
York Sun564e9382018-01-29 10:24:08 -0800741 rc0a = ddr_freq > 3200 ? 0x7 :
742 (ddr_freq > 2933 ? 0x6 :
743 (ddr_freq > 2666 ? 0x5 :
744 (ddr_freq > 2400 ? 0x4 :
745 (ddr_freq > 2133 ? 0x3 :
746 (ddr_freq > 1866 ? 0x2 :
747 (ddr_freq > 1600 ? 1 : 0))))));
748 rc0f = ddr_freq > 3200 ? 0x3 :
749 (ddr_freq > 2400 ? 0x2 :
750 (ddr_freq > 2133 ? 0x1 : 0));
York Sune1fd16b2011-01-10 12:03:00 +0000751 ddr->ddr_sdram_rcw_1 =
752 common_dimm->rcw[0] << 28 | \
753 common_dimm->rcw[1] << 24 | \
754 common_dimm->rcw[2] << 20 | \
755 common_dimm->rcw[3] << 16 | \
756 common_dimm->rcw[4] << 12 | \
757 common_dimm->rcw[5] << 8 | \
758 common_dimm->rcw[6] << 4 | \
759 common_dimm->rcw[7];
760 ddr->ddr_sdram_rcw_2 =
761 common_dimm->rcw[8] << 28 | \
762 common_dimm->rcw[9] << 24 | \
York Sun564e9382018-01-29 10:24:08 -0800763 rc0a << 20 | \
York Sune1fd16b2011-01-10 12:03:00 +0000764 common_dimm->rcw[11] << 16 | \
765 common_dimm->rcw[12] << 12 | \
766 common_dimm->rcw[13] << 8 | \
767 common_dimm->rcw[14] << 4 | \
York Sun564e9382018-01-29 10:24:08 -0800768 rc0f;
769 ddr->ddr_sdram_rcw_3 =
770 ((ddr_freq - 1260 + 19) / 20) << 8;
York Sune1fd16b2011-01-10 12:03:00 +0000771 }
York Sun426230a2018-01-29 09:44:33 -0800772 debug("FSLDDR: ddr_sdram_rcw_1 = 0x%08x\n",
773 ddr->ddr_sdram_rcw_1);
774 debug("FSLDDR: ddr_sdram_rcw_2 = 0x%08x\n",
775 ddr->ddr_sdram_rcw_2);
776 debug("FSLDDR: ddr_sdram_rcw_3 = 0x%08x\n",
777 ddr->ddr_sdram_rcw_3);
york9490ff42010-07-02 22:25:55 +0000778 }
779}
780
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500781/* DDR SDRAM control configuration (DDR_SDRAM_CFG) */
782static void set_ddr_sdram_cfg(fsl_ddr_cfg_regs_t *ddr,
783 const memctl_options_t *popts,
784 const common_timing_params_t *common_dimm)
785{
786 unsigned int mem_en; /* DDR SDRAM interface logic enable */
787 unsigned int sren; /* Self refresh enable (during sleep) */
788 unsigned int ecc_en; /* ECC enable. */
789 unsigned int rd_en; /* Registered DIMM enable */
790 unsigned int sdram_type; /* Type of SDRAM */
791 unsigned int dyn_pwr; /* Dynamic power management mode */
792 unsigned int dbw; /* DRAM dta bus width */
Dave Liu22ff3d02008-11-21 16:31:29 +0800793 unsigned int eight_be = 0; /* 8-beat burst enable, DDR2 is zero */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500794 unsigned int ncap = 0; /* Non-concurrent auto-precharge */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530795 unsigned int threet_en; /* Enable 3T timing */
796 unsigned int twot_en; /* Enable 2T timing */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500797 unsigned int ba_intlv_ctl; /* Bank (CS) interleaving control */
798 unsigned int x32_en = 0; /* x32 enable */
799 unsigned int pchb8 = 0; /* precharge bit 8 enable */
800 unsigned int hse; /* Global half strength override */
York Sund28cb672014-09-05 13:52:41 +0800801 unsigned int acc_ecc_en = 0; /* Accumulated ECC enable */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500802 unsigned int mem_halt = 0; /* memory controller halt */
803 unsigned int bi = 0; /* Bypass initialization */
804
805 mem_en = 1;
806 sren = popts->self_refresh_in_sleep;
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530807 if (common_dimm->all_dimms_ecc_capable) {
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500808 /* Allow setting of ECC only if all DIMMs are ECC. */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530809 ecc_en = popts->ecc_mode;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500810 } else {
811 ecc_en = 0;
812 }
813
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530814 if (common_dimm->all_dimms_registered &&
815 !common_dimm->all_dimms_unbuffered) {
York Sune1fd16b2011-01-10 12:03:00 +0000816 rd_en = 1;
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530817 twot_en = 0;
York Sune1fd16b2011-01-10 12:03:00 +0000818 } else {
819 rd_en = 0;
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530820 twot_en = popts->twot_en;
York Sune1fd16b2011-01-10 12:03:00 +0000821 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500822
823 sdram_type = CONFIG_FSL_SDRAM_TYPE;
824
825 dyn_pwr = popts->dynamic_power;
826 dbw = popts->data_bus_width;
Dave Liuc360cea2009-03-14 12:48:30 +0800827 /* 8-beat burst enable DDR-III case
828 * we must clear it when use the on-the-fly mode,
829 * must set it when use the 32-bits bus mode.
830 */
York Sun34e026f2014-03-27 17:54:47 -0700831 if ((sdram_type == SDRAM_TYPE_DDR3) ||
832 (sdram_type == SDRAM_TYPE_DDR4)) {
Dave Liuc360cea2009-03-14 12:48:30 +0800833 if (popts->burst_length == DDR_BL8)
834 eight_be = 1;
835 if (popts->burst_length == DDR_OTF)
836 eight_be = 0;
837 if (dbw == 0x1)
838 eight_be = 1;
839 }
840
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530841 threet_en = popts->threet_en;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500842 ba_intlv_ctl = popts->ba_intlv_ctl;
843 hse = popts->half_strength_driver_enable;
844
York Sund28cb672014-09-05 13:52:41 +0800845 /* set when ddr bus width < 64 */
846 acc_ecc_en = (dbw != 0 && ecc_en == 1) ? 1 : 0;
847
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500848 ddr->ddr_sdram_cfg = (0
849 | ((mem_en & 0x1) << 31)
850 | ((sren & 0x1) << 30)
851 | ((ecc_en & 0x1) << 29)
852 | ((rd_en & 0x1) << 28)
853 | ((sdram_type & 0x7) << 24)
854 | ((dyn_pwr & 0x1) << 21)
855 | ((dbw & 0x3) << 19)
856 | ((eight_be & 0x1) << 18)
857 | ((ncap & 0x1) << 17)
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530858 | ((threet_en & 0x1) << 16)
859 | ((twot_en & 0x1) << 15)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500860 | ((ba_intlv_ctl & 0x7F) << 8)
861 | ((x32_en & 0x1) << 5)
862 | ((pchb8 & 0x1) << 4)
863 | ((hse & 0x1) << 3)
York Sund28cb672014-09-05 13:52:41 +0800864 | ((acc_ecc_en & 0x1) << 2)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500865 | ((mem_halt & 0x1) << 1)
866 | ((bi & 0x1) << 0)
867 );
Haiying Wang1f293b42008-10-03 12:37:26 -0400868 debug("FSLDDR: ddr_sdram_cfg = 0x%08x\n", ddr->ddr_sdram_cfg);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500869}
870
871/* DDR SDRAM control configuration 2 (DDR_SDRAM_CFG_2) */
York Sun03e664d2015-01-06 13:18:50 -0800872static void set_ddr_sdram_cfg_2(const unsigned int ctrl_num,
873 fsl_ddr_cfg_regs_t *ddr,
York Sune1fd16b2011-01-10 12:03:00 +0000874 const memctl_options_t *popts,
875 const unsigned int unq_mrs_en)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500876{
877 unsigned int frc_sr = 0; /* Force self refresh */
878 unsigned int sr_ie = 0; /* Self-refresh interrupt enable */
York Suncae7c1b2011-08-26 11:32:40 -0700879 unsigned int odt_cfg = 0; /* ODT configuration */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500880 unsigned int num_pr; /* Number of posted refreshes */
York Sun57495e42012-10-08 07:44:22 +0000881 unsigned int slow = 0; /* DDR will be run less than 1250 */
York Sunb61e0612013-06-25 11:37:47 -0700882 unsigned int x4_en = 0; /* x4 DRAM enable */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500883 unsigned int obc_cfg; /* On-The-Fly Burst Chop Cfg */
884 unsigned int ap_en; /* Address Parity Enable */
885 unsigned int d_init; /* DRAM data initialization */
886 unsigned int rcw_en = 0; /* Register Control Word Enable */
887 unsigned int md_en = 0; /* Mirrored DIMM Enable */
york5800e7a2010-07-02 22:25:53 +0000888 unsigned int qd_en = 0; /* quad-rank DIMM Enable */
York Suncae7c1b2011-08-26 11:32:40 -0700889 int i;
York Sun34e026f2014-03-27 17:54:47 -0700890#ifndef CONFIG_SYS_FSL_DDR4
891 unsigned int dll_rst_dis = 1; /* DLL reset disable */
892 unsigned int dqs_cfg; /* DQS configuration */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500893
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530894 dqs_cfg = popts->dqs_config;
York Sun34e026f2014-03-27 17:54:47 -0700895#endif
York Suncae7c1b2011-08-26 11:32:40 -0700896 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
897 if (popts->cs_local_opts[i].odt_rd_cfg
898 || popts->cs_local_opts[i].odt_wr_cfg) {
899 odt_cfg = SDRAM_CFG2_ODT_ONLY_READ;
900 break;
901 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500902 }
Joakim Tjernlunde368c202015-10-14 16:32:00 +0200903 sr_ie = popts->self_refresh_interrupt_en;
York Sunc0c32af2018-01-29 09:44:35 -0800904 num_pr = popts->package_3ds + 1;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500905
906 /*
907 * 8572 manual says
908 * {TIMING_CFG_1[PRETOACT]
909 * + [DDR_SDRAM_CFG_2[NUM_PR]
910 * * ({EXT_REFREC || REFREC} + 8 + 2)]}
911 * << DDR_SDRAM_INTERVAL[REFINT]
912 */
York Sun34e026f2014-03-27 17:54:47 -0700913#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530914 obc_cfg = popts->otf_burst_chop_en;
Dave Liuc360cea2009-03-14 12:48:30 +0800915#else
916 obc_cfg = 0;
917#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500918
York Sun57495e42012-10-08 07:44:22 +0000919#if (CONFIG_SYS_FSL_DDR_VER >= FSL_DDR_VER_4_7)
York Sun03e664d2015-01-06 13:18:50 -0800920 slow = get_ddr_freq(ctrl_num) < 1249000000;
York Sun57495e42012-10-08 07:44:22 +0000921#endif
922
Shengzhou Liueb118802016-03-10 17:36:56 +0800923 if (popts->registered_dimm_en)
York Sune1fd16b2011-01-10 12:03:00 +0000924 rcw_en = 1;
Shengzhou Liueb118802016-03-10 17:36:56 +0800925
926 /* DDR4 can have address parity for UDIMM and discrete */
927 if ((CONFIG_FSL_SDRAM_TYPE != SDRAM_TYPE_DDR4) &&
928 (!popts->registered_dimm_en)) {
York Sune1fd16b2011-01-10 12:03:00 +0000929 ap_en = 0;
Shengzhou Liueb118802016-03-10 17:36:56 +0800930 } else {
931 ap_en = popts->ap_en;
York Sune1fd16b2011-01-10 12:03:00 +0000932 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500933
York Sunb61e0612013-06-25 11:37:47 -0700934 x4_en = popts->x4_en ? 1 : 0;
935
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500936#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
937 /* Use the DDR controller to auto initialize memory. */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530938 d_init = popts->ecc_init_using_memctl;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500939 ddr->ddr_data_init = CONFIG_MEM_INIT_VALUE;
940 debug("DDR: ddr_data_init = 0x%08x\n", ddr->ddr_data_init);
941#else
942 /* Memory will be initialized via DMA, or not at all. */
943 d_init = 0;
944#endif
945
York Sun34e026f2014-03-27 17:54:47 -0700946#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
Dave Liuc360cea2009-03-14 12:48:30 +0800947 md_en = popts->mirrored_dimm;
948#endif
york5800e7a2010-07-02 22:25:53 +0000949 qd_en = popts->quad_rank_present ? 1 : 0;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500950 ddr->ddr_sdram_cfg_2 = (0
951 | ((frc_sr & 0x1) << 31)
952 | ((sr_ie & 0x1) << 30)
York Sun34e026f2014-03-27 17:54:47 -0700953#ifndef CONFIG_SYS_FSL_DDR4
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500954 | ((dll_rst_dis & 0x1) << 29)
955 | ((dqs_cfg & 0x3) << 26)
York Sun34e026f2014-03-27 17:54:47 -0700956#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500957 | ((odt_cfg & 0x3) << 21)
958 | ((num_pr & 0xf) << 12)
York Sun57495e42012-10-08 07:44:22 +0000959 | ((slow & 1) << 11)
York Sunb61e0612013-06-25 11:37:47 -0700960 | (x4_en << 10)
york5800e7a2010-07-02 22:25:53 +0000961 | (qd_en << 9)
York Sune1fd16b2011-01-10 12:03:00 +0000962 | (unq_mrs_en << 8)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500963 | ((obc_cfg & 0x1) << 6)
964 | ((ap_en & 0x1) << 5)
965 | ((d_init & 0x1) << 4)
966 | ((rcw_en & 0x1) << 2)
967 | ((md_en & 0x1) << 0)
968 );
Haiying Wang1f293b42008-10-03 12:37:26 -0400969 debug("FSLDDR: ddr_sdram_cfg_2 = 0x%08x\n", ddr->ddr_sdram_cfg_2);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500970}
971
York Sun34e026f2014-03-27 17:54:47 -0700972#ifdef CONFIG_SYS_FSL_DDR4
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500973/* DDR SDRAM Mode configuration 2 (DDR_SDRAM_MODE_2) */
York Sun03e664d2015-01-06 13:18:50 -0800974static void set_ddr_sdram_mode_2(const unsigned int ctrl_num,
975 fsl_ddr_cfg_regs_t *ddr,
York Sune1fd16b2011-01-10 12:03:00 +0000976 const memctl_options_t *popts,
Valentin Longchamp7e157b02013-10-18 11:47:20 +0200977 const common_timing_params_t *common_dimm,
York Sune1fd16b2011-01-10 12:03:00 +0000978 const unsigned int unq_mrs_en)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500979{
980 unsigned short esdmode2 = 0; /* Extended SDRAM mode 2 */
981 unsigned short esdmode3 = 0; /* Extended SDRAM mode 3 */
York Sun34e026f2014-03-27 17:54:47 -0700982 int i;
983 unsigned int wr_crc = 0; /* Disable */
984 unsigned int rtt_wr = 0; /* Rtt_WR - dynamic ODT off */
985 unsigned int srt = 0; /* self-refresh temerature, normal range */
York Sun03e664d2015-01-06 13:18:50 -0800986 unsigned int cwl = compute_cas_write_latency(ctrl_num) - 9;
York Sun34e026f2014-03-27 17:54:47 -0700987 unsigned int mpr = 0; /* serial */
988 unsigned int wc_lat;
York Sun03e664d2015-01-06 13:18:50 -0800989 const unsigned int mclk_ps = get_memory_clk_period_ps(ctrl_num);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500990
York Sun34e026f2014-03-27 17:54:47 -0700991 if (popts->rtt_override)
992 rtt_wr = popts->rtt_wr_override_value;
993 else
994 rtt_wr = popts->cs_local_opts[0].odt_rtt_wr;
995
996 if (common_dimm->extended_op_srt)
997 srt = common_dimm->extended_op_srt;
998
999 esdmode2 = (0
1000 | ((wr_crc & 0x1) << 12)
1001 | ((rtt_wr & 0x3) << 9)
1002 | ((srt & 0x3) << 6)
1003 | ((cwl & 0x7) << 3));
1004
1005 if (mclk_ps >= 1250)
1006 wc_lat = 0;
1007 else if (mclk_ps >= 833)
1008 wc_lat = 1;
1009 else
1010 wc_lat = 2;
1011
1012 esdmode3 = (0
1013 | ((mpr & 0x3) << 11)
1014 | ((wc_lat & 0x3) << 9));
1015
1016 ddr->ddr_sdram_mode_2 = (0
1017 | ((esdmode2 & 0xFFFF) << 16)
1018 | ((esdmode3 & 0xFFFF) << 0)
1019 );
1020 debug("FSLDDR: ddr_sdram_mode_2 = 0x%08x\n", ddr->ddr_sdram_mode_2);
1021
1022 if (unq_mrs_en) { /* unique mode registers are supported */
1023 for (i = 1; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
1024 if (popts->rtt_override)
1025 rtt_wr = popts->rtt_wr_override_value;
1026 else
1027 rtt_wr = popts->cs_local_opts[i].odt_rtt_wr;
1028
1029 esdmode2 &= 0xF9FF; /* clear bit 10, 9 */
1030 esdmode2 |= (rtt_wr & 0x3) << 9;
1031 switch (i) {
1032 case 1:
1033 ddr->ddr_sdram_mode_4 = (0
1034 | ((esdmode2 & 0xFFFF) << 16)
1035 | ((esdmode3 & 0xFFFF) << 0)
1036 );
1037 break;
1038 case 2:
1039 ddr->ddr_sdram_mode_6 = (0
1040 | ((esdmode2 & 0xFFFF) << 16)
1041 | ((esdmode3 & 0xFFFF) << 0)
1042 );
1043 break;
1044 case 3:
1045 ddr->ddr_sdram_mode_8 = (0
1046 | ((esdmode2 & 0xFFFF) << 16)
1047 | ((esdmode3 & 0xFFFF) << 0)
1048 );
1049 break;
1050 }
1051 }
1052 debug("FSLDDR: ddr_sdram_mode_4 = 0x%08x\n",
1053 ddr->ddr_sdram_mode_4);
1054 debug("FSLDDR: ddr_sdram_mode_6 = 0x%08x\n",
1055 ddr->ddr_sdram_mode_6);
1056 debug("FSLDDR: ddr_sdram_mode_8 = 0x%08x\n",
1057 ddr->ddr_sdram_mode_8);
1058 }
1059}
1060#elif defined(CONFIG_SYS_FSL_DDR3)
1061/* DDR SDRAM Mode configuration 2 (DDR_SDRAM_MODE_2) */
York Sun03e664d2015-01-06 13:18:50 -08001062static void set_ddr_sdram_mode_2(const unsigned int ctrl_num,
1063 fsl_ddr_cfg_regs_t *ddr,
York Sun34e026f2014-03-27 17:54:47 -07001064 const memctl_options_t *popts,
1065 const common_timing_params_t *common_dimm,
1066 const unsigned int unq_mrs_en)
1067{
1068 unsigned short esdmode2 = 0; /* Extended SDRAM mode 2 */
1069 unsigned short esdmode3 = 0; /* Extended SDRAM mode 3 */
Kumar Gala92966832011-01-20 01:53:15 -06001070 int i;
Dave Liu1aa3d082009-12-16 10:24:38 -06001071 unsigned int rtt_wr = 0; /* Rtt_WR - dynamic ODT off */
Dave Liuc360cea2009-03-14 12:48:30 +08001072 unsigned int srt = 0; /* self-refresh temerature, normal range */
1073 unsigned int asr = 0; /* auto self-refresh disable */
York Sun03e664d2015-01-06 13:18:50 -08001074 unsigned int cwl = compute_cas_write_latency(ctrl_num) - 5;
Dave Liuc360cea2009-03-14 12:48:30 +08001075 unsigned int pasr = 0; /* partial array self refresh disable */
1076
Dave Liu1aa3d082009-12-16 10:24:38 -06001077 if (popts->rtt_override)
1078 rtt_wr = popts->rtt_wr_override_value;
York Sune1fd16b2011-01-10 12:03:00 +00001079 else
1080 rtt_wr = popts->cs_local_opts[0].odt_rtt_wr;
Valentin Longchamp7e157b02013-10-18 11:47:20 +02001081
1082 if (common_dimm->extended_op_srt)
1083 srt = common_dimm->extended_op_srt;
1084
Dave Liuc360cea2009-03-14 12:48:30 +08001085 esdmode2 = (0
1086 | ((rtt_wr & 0x3) << 9)
1087 | ((srt & 0x1) << 7)
1088 | ((asr & 0x1) << 6)
1089 | ((cwl & 0x7) << 3)
1090 | ((pasr & 0x7) << 0));
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001091 ddr->ddr_sdram_mode_2 = (0
1092 | ((esdmode2 & 0xFFFF) << 16)
1093 | ((esdmode3 & 0xFFFF) << 0)
1094 );
Haiying Wang1f293b42008-10-03 12:37:26 -04001095 debug("FSLDDR: ddr_sdram_mode_2 = 0x%08x\n", ddr->ddr_sdram_mode_2);
York Sune1fd16b2011-01-10 12:03:00 +00001096
York Sune1fd16b2011-01-10 12:03:00 +00001097 if (unq_mrs_en) { /* unique mode registers are supported */
Kumar Galadea7f882011-11-09 10:05:10 -06001098 for (i = 1; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
York Sune1fd16b2011-01-10 12:03:00 +00001099 if (popts->rtt_override)
1100 rtt_wr = popts->rtt_wr_override_value;
1101 else
1102 rtt_wr = popts->cs_local_opts[i].odt_rtt_wr;
1103
1104 esdmode2 &= 0xF9FF; /* clear bit 10, 9 */
1105 esdmode2 |= (rtt_wr & 0x3) << 9;
1106 switch (i) {
1107 case 1:
1108 ddr->ddr_sdram_mode_4 = (0
1109 | ((esdmode2 & 0xFFFF) << 16)
1110 | ((esdmode3 & 0xFFFF) << 0)
1111 );
1112 break;
1113 case 2:
1114 ddr->ddr_sdram_mode_6 = (0
1115 | ((esdmode2 & 0xFFFF) << 16)
1116 | ((esdmode3 & 0xFFFF) << 0)
1117 );
1118 break;
1119 case 3:
1120 ddr->ddr_sdram_mode_8 = (0
1121 | ((esdmode2 & 0xFFFF) << 16)
1122 | ((esdmode3 & 0xFFFF) << 0)
1123 );
1124 break;
1125 }
1126 }
1127 debug("FSLDDR: ddr_sdram_mode_4 = 0x%08x\n",
1128 ddr->ddr_sdram_mode_4);
1129 debug("FSLDDR: ddr_sdram_mode_6 = 0x%08x\n",
1130 ddr->ddr_sdram_mode_6);
1131 debug("FSLDDR: ddr_sdram_mode_8 = 0x%08x\n",
1132 ddr->ddr_sdram_mode_8);
1133 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001134}
1135
York Sun34e026f2014-03-27 17:54:47 -07001136#else /* for DDR2 and DDR1 */
1137/* DDR SDRAM Mode configuration 2 (DDR_SDRAM_MODE_2) */
York Sun03e664d2015-01-06 13:18:50 -08001138static void set_ddr_sdram_mode_2(const unsigned int ctrl_num,
1139 fsl_ddr_cfg_regs_t *ddr,
York Sun34e026f2014-03-27 17:54:47 -07001140 const memctl_options_t *popts,
1141 const common_timing_params_t *common_dimm,
1142 const unsigned int unq_mrs_en)
1143{
1144 unsigned short esdmode2 = 0; /* Extended SDRAM mode 2 */
1145 unsigned short esdmode3 = 0; /* Extended SDRAM mode 3 */
1146
1147 ddr->ddr_sdram_mode_2 = (0
1148 | ((esdmode2 & 0xFFFF) << 16)
1149 | ((esdmode3 & 0xFFFF) << 0)
1150 );
1151 debug("FSLDDR: ddr_sdram_mode_2 = 0x%08x\n", ddr->ddr_sdram_mode_2);
1152}
1153#endif
1154
1155#ifdef CONFIG_SYS_FSL_DDR4
1156/* DDR SDRAM Mode configuration 9 (DDR_SDRAM_MODE_9) */
1157static void set_ddr_sdram_mode_9(fsl_ddr_cfg_regs_t *ddr,
1158 const memctl_options_t *popts,
1159 const common_timing_params_t *common_dimm,
1160 const unsigned int unq_mrs_en)
1161{
1162 int i;
1163 unsigned short esdmode4 = 0; /* Extended SDRAM mode 4 */
1164 unsigned short esdmode5; /* Extended SDRAM mode 5 */
York Sun6b95be22015-03-19 09:30:27 -07001165 int rtt_park = 0;
York Sun8a514292015-11-04 10:03:19 -08001166 bool four_cs = false;
Shengzhou Liueb118802016-03-10 17:36:56 +08001167 const unsigned int mclk_ps = get_memory_clk_period_ps(0);
York Sun34e026f2014-03-27 17:54:47 -07001168
York Sun8a514292015-11-04 10:03:19 -08001169#if CONFIG_CHIP_SELECTS_PER_CTRL == 4
1170 if ((ddr->cs[0].config & SDRAM_CS_CONFIG_EN) &&
1171 (ddr->cs[1].config & SDRAM_CS_CONFIG_EN) &&
1172 (ddr->cs[2].config & SDRAM_CS_CONFIG_EN) &&
1173 (ddr->cs[3].config & SDRAM_CS_CONFIG_EN))
1174 four_cs = true;
1175#endif
York Sun6b95be22015-03-19 09:30:27 -07001176 if (ddr->cs[0].config & SDRAM_CS_CONFIG_EN) {
1177 esdmode5 = 0x00000500; /* Data mask enable, RTT_PARK CS0 */
York Sun8a514292015-11-04 10:03:19 -08001178 rtt_park = four_cs ? 0 : 1;
York Sun6b95be22015-03-19 09:30:27 -07001179 } else {
1180 esdmode5 = 0x00000400; /* Data mask enabled */
1181 }
York Sun34e026f2014-03-27 17:54:47 -07001182
York Sun426230a2018-01-29 09:44:33 -08001183 /*
1184 * For DDR3, set C/A latency if address parity is enabled.
1185 * For DDR4, set C/A latency for UDIMM only. For RDIMM the delay is
1186 * handled by register chip and RCW settings.
1187 */
1188 if ((ddr->ddr_sdram_cfg_2 & SDRAM_CFG2_AP_EN) &&
1189 ((CONFIG_FSL_SDRAM_TYPE != SDRAM_TYPE_DDR4) ||
1190 !popts->registered_dimm_en)) {
Shengzhou Liueb118802016-03-10 17:36:56 +08001191 if (mclk_ps >= 935) {
1192 /* for DDR4-1600/1866/2133 */
1193 esdmode5 |= DDR_MR5_CA_PARITY_LAT_4_CLK;
1194 } else if (mclk_ps >= 833) {
1195 /* for DDR4-2400 */
1196 esdmode5 |= DDR_MR5_CA_PARITY_LAT_5_CLK;
1197 } else {
1198 printf("parity: mclk_ps = %d not supported\n", mclk_ps);
1199 }
1200 }
1201
York Sun34e026f2014-03-27 17:54:47 -07001202 ddr->ddr_sdram_mode_9 = (0
1203 | ((esdmode4 & 0xffff) << 16)
1204 | ((esdmode5 & 0xffff) << 0)
1205 );
York Sun66869f92015-03-19 09:30:26 -07001206
York Sun8a514292015-11-04 10:03:19 -08001207 /* Normally only the first enabled CS use 0x500, others use 0x400
1208 * But when four chip-selects are all enabled, all mode registers
1209 * need 0x500 to park.
1210 */
York Sun66869f92015-03-19 09:30:26 -07001211
York Sunc0c32af2018-01-29 09:44:35 -08001212 debug("FSLDDR: ddr_sdram_mode_9 = 0x%08x\n", ddr->ddr_sdram_mode_9);
York Sun34e026f2014-03-27 17:54:47 -07001213 if (unq_mrs_en) { /* unique mode registers are supported */
1214 for (i = 1; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
York Sun6b95be22015-03-19 09:30:27 -07001215 if (!rtt_park &&
1216 (ddr->cs[i].config & SDRAM_CS_CONFIG_EN)) {
1217 esdmode5 |= 0x00000500; /* RTT_PARK */
York Sun8a514292015-11-04 10:03:19 -08001218 rtt_park = four_cs ? 0 : 1;
York Sun6b95be22015-03-19 09:30:27 -07001219 } else {
1220 esdmode5 = 0x00000400;
1221 }
Shengzhou Liueb118802016-03-10 17:36:56 +08001222
York Sun426230a2018-01-29 09:44:33 -08001223 if ((ddr->ddr_sdram_cfg_2 & SDRAM_CFG2_AP_EN) &&
1224 ((CONFIG_FSL_SDRAM_TYPE != SDRAM_TYPE_DDR4) ||
1225 !popts->registered_dimm_en)) {
Shengzhou Liueb118802016-03-10 17:36:56 +08001226 if (mclk_ps >= 935) {
1227 /* for DDR4-1600/1866/2133 */
1228 esdmode5 |= DDR_MR5_CA_PARITY_LAT_4_CLK;
1229 } else if (mclk_ps >= 833) {
1230 /* for DDR4-2400 */
1231 esdmode5 |= DDR_MR5_CA_PARITY_LAT_5_CLK;
1232 } else {
1233 printf("parity: mclk_ps = %d not supported\n",
1234 mclk_ps);
1235 }
1236 }
1237
York Sun34e026f2014-03-27 17:54:47 -07001238 switch (i) {
1239 case 1:
1240 ddr->ddr_sdram_mode_11 = (0
1241 | ((esdmode4 & 0xFFFF) << 16)
1242 | ((esdmode5 & 0xFFFF) << 0)
1243 );
1244 break;
1245 case 2:
1246 ddr->ddr_sdram_mode_13 = (0
1247 | ((esdmode4 & 0xFFFF) << 16)
1248 | ((esdmode5 & 0xFFFF) << 0)
1249 );
1250 break;
1251 case 3:
1252 ddr->ddr_sdram_mode_15 = (0
1253 | ((esdmode4 & 0xFFFF) << 16)
1254 | ((esdmode5 & 0xFFFF) << 0)
1255 );
1256 break;
1257 }
1258 }
1259 debug("FSLDDR: ddr_sdram_mode_11 = 0x%08x\n",
1260 ddr->ddr_sdram_mode_11);
1261 debug("FSLDDR: ddr_sdram_mode_13 = 0x%08x\n",
1262 ddr->ddr_sdram_mode_13);
1263 debug("FSLDDR: ddr_sdram_mode_15 = 0x%08x\n",
1264 ddr->ddr_sdram_mode_15);
1265 }
1266}
1267
1268/* DDR SDRAM Mode configuration 10 (DDR_SDRAM_MODE_10) */
York Sun03e664d2015-01-06 13:18:50 -08001269static void set_ddr_sdram_mode_10(const unsigned int ctrl_num,
1270 fsl_ddr_cfg_regs_t *ddr,
York Sun34e026f2014-03-27 17:54:47 -07001271 const memctl_options_t *popts,
1272 const common_timing_params_t *common_dimm,
1273 const unsigned int unq_mrs_en)
1274{
1275 int i;
1276 unsigned short esdmode6 = 0; /* Extended SDRAM mode 6 */
1277 unsigned short esdmode7 = 0; /* Extended SDRAM mode 7 */
York Sun03e664d2015-01-06 13:18:50 -08001278 unsigned int tccdl_min = picos_to_mclk(ctrl_num, common_dimm->tccdl_ps);
York Sun34e026f2014-03-27 17:54:47 -07001279
1280 esdmode6 = ((tccdl_min - 4) & 0x7) << 10;
1281
York Sun0fb71972015-11-04 10:03:18 -08001282 if (popts->ddr_cdr2 & DDR_CDR2_VREF_RANGE_2)
1283 esdmode6 |= 1 << 6; /* Range 2 */
1284
York Sun34e026f2014-03-27 17:54:47 -07001285 ddr->ddr_sdram_mode_10 = (0
1286 | ((esdmode6 & 0xffff) << 16)
1287 | ((esdmode7 & 0xffff) << 0)
1288 );
York Sunc0c32af2018-01-29 09:44:35 -08001289 debug("FSLDDR: ddr_sdram_mode_10 = 0x%08x\n", ddr->ddr_sdram_mode_10);
York Sun34e026f2014-03-27 17:54:47 -07001290 if (unq_mrs_en) { /* unique mode registers are supported */
1291 for (i = 1; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
1292 switch (i) {
1293 case 1:
1294 ddr->ddr_sdram_mode_12 = (0
1295 | ((esdmode6 & 0xFFFF) << 16)
1296 | ((esdmode7 & 0xFFFF) << 0)
1297 );
1298 break;
1299 case 2:
1300 ddr->ddr_sdram_mode_14 = (0
1301 | ((esdmode6 & 0xFFFF) << 16)
1302 | ((esdmode7 & 0xFFFF) << 0)
1303 );
1304 break;
1305 case 3:
1306 ddr->ddr_sdram_mode_16 = (0
1307 | ((esdmode6 & 0xFFFF) << 16)
1308 | ((esdmode7 & 0xFFFF) << 0)
1309 );
1310 break;
1311 }
1312 }
1313 debug("FSLDDR: ddr_sdram_mode_12 = 0x%08x\n",
1314 ddr->ddr_sdram_mode_12);
1315 debug("FSLDDR: ddr_sdram_mode_14 = 0x%08x\n",
1316 ddr->ddr_sdram_mode_14);
1317 debug("FSLDDR: ddr_sdram_mode_16 = 0x%08x\n",
1318 ddr->ddr_sdram_mode_16);
1319 }
1320}
1321
1322#endif
1323
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001324/* DDR SDRAM Interval Configuration (DDR_SDRAM_INTERVAL) */
York Sun03e664d2015-01-06 13:18:50 -08001325static void set_ddr_sdram_interval(const unsigned int ctrl_num,
1326 fsl_ddr_cfg_regs_t *ddr,
1327 const memctl_options_t *popts,
1328 const common_timing_params_t *common_dimm)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001329{
1330 unsigned int refint; /* Refresh interval */
1331 unsigned int bstopre; /* Precharge interval */
1332
York Sun03e664d2015-01-06 13:18:50 -08001333 refint = picos_to_mclk(ctrl_num, common_dimm->refresh_rate_ps);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001334
1335 bstopre = popts->bstopre;
1336
1337 /* refint field used 0x3FFF in earlier controllers */
1338 ddr->ddr_sdram_interval = (0
1339 | ((refint & 0xFFFF) << 16)
1340 | ((bstopre & 0x3FFF) << 0)
1341 );
Haiying Wang1f293b42008-10-03 12:37:26 -04001342 debug("FSLDDR: ddr_sdram_interval = 0x%08x\n", ddr->ddr_sdram_interval);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001343}
1344
York Sun34e026f2014-03-27 17:54:47 -07001345#ifdef CONFIG_SYS_FSL_DDR4
Dave Liuc360cea2009-03-14 12:48:30 +08001346/* DDR SDRAM Mode configuration set (DDR_SDRAM_MODE) */
York Sun03e664d2015-01-06 13:18:50 -08001347static void set_ddr_sdram_mode(const unsigned int ctrl_num,
1348 fsl_ddr_cfg_regs_t *ddr,
Dave Liuc360cea2009-03-14 12:48:30 +08001349 const memctl_options_t *popts,
1350 const common_timing_params_t *common_dimm,
1351 unsigned int cas_latency,
York Sune1fd16b2011-01-10 12:03:00 +00001352 unsigned int additive_latency,
1353 const unsigned int unq_mrs_en)
Dave Liuc360cea2009-03-14 12:48:30 +08001354{
York Sun34e026f2014-03-27 17:54:47 -07001355 int i;
1356 unsigned short esdmode; /* Extended SDRAM mode */
1357 unsigned short sdmode; /* SDRAM mode */
1358
1359 /* Mode Register - MR1 */
1360 unsigned int qoff = 0; /* Output buffer enable 0=yes, 1=no */
1361 unsigned int tdqs_en = 0; /* TDQS Enable: 0=no, 1=yes */
1362 unsigned int rtt;
1363 unsigned int wrlvl_en = 0; /* Write level enable: 0=no, 1=yes */
1364 unsigned int al = 0; /* Posted CAS# additive latency (AL) */
1365 unsigned int dic = 0; /* Output driver impedance, 40ohm */
1366 unsigned int dll_en = 1; /* DLL Enable 1=Enable (Normal),
1367 0=Disable (Test/Debug) */
1368
1369 /* Mode Register - MR0 */
1370 unsigned int wr = 0; /* Write Recovery */
1371 unsigned int dll_rst; /* DLL Reset */
1372 unsigned int mode; /* Normal=0 or Test=1 */
1373 unsigned int caslat = 4;/* CAS# latency, default set as 6 cycles */
1374 /* BT: Burst Type (0=Nibble Sequential, 1=Interleaved) */
1375 unsigned int bt;
1376 unsigned int bl; /* BL: Burst Length */
1377
1378 unsigned int wr_mclk;
1379 /* DDR4 support WR 10, 12, 14, 16, 18, 20, 24 */
1380 static const u8 wr_table[] = {
1381 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 6, 6};
1382 /* DDR4 support CAS 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 22, 24 */
1383 static const u8 cas_latency_table[] = {
1384 0, 1, 2, 3, 4, 5, 6, 7, 8, 8,
1385 9, 9, 10, 10, 11, 11};
1386
1387 if (popts->rtt_override)
1388 rtt = popts->rtt_override_value;
1389 else
1390 rtt = popts->cs_local_opts[0].odt_rtt_norm;
1391
1392 if (additive_latency == (cas_latency - 1))
1393 al = 1;
1394 if (additive_latency == (cas_latency - 2))
1395 al = 2;
1396
1397 if (popts->quad_rank_present)
1398 dic = 1; /* output driver impedance 240/7 ohm */
1399
1400 /*
1401 * The esdmode value will also be used for writing
1402 * MR1 during write leveling for DDR3, although the
1403 * bits specifically related to the write leveling
1404 * scheme will be handled automatically by the DDR
1405 * controller. so we set the wrlvl_en = 0 here.
1406 */
1407 esdmode = (0
1408 | ((qoff & 0x1) << 12)
1409 | ((tdqs_en & 0x1) << 11)
1410 | ((rtt & 0x7) << 8)
1411 | ((wrlvl_en & 0x1) << 7)
1412 | ((al & 0x3) << 3)
1413 | ((dic & 0x3) << 1) /* DIC field is split */
1414 | ((dll_en & 0x1) << 0)
1415 );
1416
1417 /*
1418 * DLL control for precharge PD
1419 * 0=slow exit DLL off (tXPDLL)
1420 * 1=fast exit DLL on (tXP)
1421 */
1422
York Sun03e664d2015-01-06 13:18:50 -08001423 wr_mclk = picos_to_mclk(ctrl_num, common_dimm->twr_ps);
York Sun34e026f2014-03-27 17:54:47 -07001424 if (wr_mclk <= 24) {
1425 wr = wr_table[wr_mclk - 10];
1426 } else {
1427 printf("Error: unsupported write recovery for mode register wr_mclk = %d\n",
1428 wr_mclk);
1429 }
1430
1431 dll_rst = 0; /* dll no reset */
1432 mode = 0; /* normal mode */
1433
1434 /* look up table to get the cas latency bits */
1435 if (cas_latency >= 9 && cas_latency <= 24)
1436 caslat = cas_latency_table[cas_latency - 9];
1437 else
1438 printf("Error: unsupported cas latency for mode register\n");
1439
1440 bt = 0; /* Nibble sequential */
1441
1442 switch (popts->burst_length) {
1443 case DDR_BL8:
1444 bl = 0;
1445 break;
1446 case DDR_OTF:
1447 bl = 1;
1448 break;
1449 case DDR_BC4:
1450 bl = 2;
1451 break;
1452 default:
1453 printf("Error: invalid burst length of %u specified. ",
1454 popts->burst_length);
1455 puts("Defaulting to on-the-fly BC4 or BL8 beats.\n");
1456 bl = 1;
1457 break;
1458 }
1459
1460 sdmode = (0
1461 | ((wr & 0x7) << 9)
1462 | ((dll_rst & 0x1) << 8)
1463 | ((mode & 0x1) << 7)
1464 | (((caslat >> 1) & 0x7) << 4)
1465 | ((bt & 0x1) << 3)
1466 | ((caslat & 1) << 2)
1467 | ((bl & 0x3) << 0)
1468 );
1469
1470 ddr->ddr_sdram_mode = (0
1471 | ((esdmode & 0xFFFF) << 16)
1472 | ((sdmode & 0xFFFF) << 0)
1473 );
1474
1475 debug("FSLDDR: ddr_sdram_mode = 0x%08x\n", ddr->ddr_sdram_mode);
1476
1477 if (unq_mrs_en) { /* unique mode registers are supported */
1478 for (i = 1; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
1479 if (popts->rtt_override)
1480 rtt = popts->rtt_override_value;
1481 else
1482 rtt = popts->cs_local_opts[i].odt_rtt_norm;
1483
1484 esdmode &= 0xF8FF; /* clear bit 10,9,8 for rtt */
1485 esdmode |= (rtt & 0x7) << 8;
1486 switch (i) {
1487 case 1:
1488 ddr->ddr_sdram_mode_3 = (0
1489 | ((esdmode & 0xFFFF) << 16)
1490 | ((sdmode & 0xFFFF) << 0)
1491 );
1492 break;
1493 case 2:
1494 ddr->ddr_sdram_mode_5 = (0
1495 | ((esdmode & 0xFFFF) << 16)
1496 | ((sdmode & 0xFFFF) << 0)
1497 );
1498 break;
1499 case 3:
1500 ddr->ddr_sdram_mode_7 = (0
1501 | ((esdmode & 0xFFFF) << 16)
1502 | ((sdmode & 0xFFFF) << 0)
1503 );
1504 break;
1505 }
1506 }
1507 debug("FSLDDR: ddr_sdram_mode_3 = 0x%08x\n",
1508 ddr->ddr_sdram_mode_3);
1509 debug("FSLDDR: ddr_sdram_mode_5 = 0x%08x\n",
1510 ddr->ddr_sdram_mode_5);
1511 debug("FSLDDR: ddr_sdram_mode_5 = 0x%08x\n",
1512 ddr->ddr_sdram_mode_5);
1513 }
1514}
1515
1516#elif defined(CONFIG_SYS_FSL_DDR3)
1517/* DDR SDRAM Mode configuration set (DDR_SDRAM_MODE) */
York Sun03e664d2015-01-06 13:18:50 -08001518static void set_ddr_sdram_mode(const unsigned int ctrl_num,
1519 fsl_ddr_cfg_regs_t *ddr,
York Sun34e026f2014-03-27 17:54:47 -07001520 const memctl_options_t *popts,
1521 const common_timing_params_t *common_dimm,
1522 unsigned int cas_latency,
1523 unsigned int additive_latency,
1524 const unsigned int unq_mrs_en)
1525{
1526 int i;
Dave Liuc360cea2009-03-14 12:48:30 +08001527 unsigned short esdmode; /* Extended SDRAM mode */
1528 unsigned short sdmode; /* SDRAM mode */
1529
1530 /* Mode Register - MR1 */
1531 unsigned int qoff = 0; /* Output buffer enable 0=yes, 1=no */
1532 unsigned int tdqs_en = 0; /* TDQS Enable: 0=no, 1=yes */
1533 unsigned int rtt;
1534 unsigned int wrlvl_en = 0; /* Write level enable: 0=no, 1=yes */
1535 unsigned int al = 0; /* Posted CAS# additive latency (AL) */
York Sune1fd16b2011-01-10 12:03:00 +00001536 unsigned int dic = 0; /* Output driver impedance, 40ohm */
Dave Liuc360cea2009-03-14 12:48:30 +08001537 unsigned int dll_en = 0; /* DLL Enable 0=Enable (Normal),
1538 1=Disable (Test/Debug) */
1539
1540 /* Mode Register - MR0 */
1541 unsigned int dll_on; /* DLL control for precharge PD, 0=off, 1=on */
York Sunfcea3062012-08-17 08:22:38 +00001542 unsigned int wr = 0; /* Write Recovery */
Dave Liuc360cea2009-03-14 12:48:30 +08001543 unsigned int dll_rst; /* DLL Reset */
1544 unsigned int mode; /* Normal=0 or Test=1 */
1545 unsigned int caslat = 4;/* CAS# latency, default set as 6 cycles */
1546 /* BT: Burst Type (0=Nibble Sequential, 1=Interleaved) */
1547 unsigned int bt;
1548 unsigned int bl; /* BL: Burst Length */
1549
1550 unsigned int wr_mclk;
York Sunf5b6fb72011-03-02 14:24:11 -08001551 /*
1552 * DDR_SDRAM_MODE doesn't support 9,11,13,15
1553 * Please refer JEDEC Standard No. 79-3E for Mode Register MR0
1554 * for this table
1555 */
1556 static const u8 wr_table[] = {1, 2, 3, 4, 5, 5, 6, 6, 7, 7, 0, 0};
Dave Liuc360cea2009-03-14 12:48:30 +08001557
Dave Liuc360cea2009-03-14 12:48:30 +08001558 if (popts->rtt_override)
1559 rtt = popts->rtt_override_value;
York Sune1fd16b2011-01-10 12:03:00 +00001560 else
1561 rtt = popts->cs_local_opts[0].odt_rtt_norm;
Dave Liuc360cea2009-03-14 12:48:30 +08001562
1563 if (additive_latency == (cas_latency - 1))
1564 al = 1;
1565 if (additive_latency == (cas_latency - 2))
1566 al = 2;
1567
York Sune1fd16b2011-01-10 12:03:00 +00001568 if (popts->quad_rank_present)
1569 dic = 1; /* output driver impedance 240/7 ohm */
1570
Dave Liuc360cea2009-03-14 12:48:30 +08001571 /*
1572 * The esdmode value will also be used for writing
1573 * MR1 during write leveling for DDR3, although the
1574 * bits specifically related to the write leveling
1575 * scheme will be handled automatically by the DDR
1576 * controller. so we set the wrlvl_en = 0 here.
1577 */
1578 esdmode = (0
1579 | ((qoff & 0x1) << 12)
1580 | ((tdqs_en & 0x1) << 11)
Kumar Gala6d8565a2009-09-10 14:54:55 -05001581 | ((rtt & 0x4) << 7) /* rtt field is split */
Dave Liuc360cea2009-03-14 12:48:30 +08001582 | ((wrlvl_en & 0x1) << 7)
Kumar Gala6d8565a2009-09-10 14:54:55 -05001583 | ((rtt & 0x2) << 5) /* rtt field is split */
1584 | ((dic & 0x2) << 4) /* DIC field is split */
Dave Liuc360cea2009-03-14 12:48:30 +08001585 | ((al & 0x3) << 3)
Kumar Gala6d8565a2009-09-10 14:54:55 -05001586 | ((rtt & 0x1) << 2) /* rtt field is split */
Dave Liuc360cea2009-03-14 12:48:30 +08001587 | ((dic & 0x1) << 1) /* DIC field is split */
1588 | ((dll_en & 0x1) << 0)
1589 );
1590
1591 /*
1592 * DLL control for precharge PD
1593 * 0=slow exit DLL off (tXPDLL)
1594 * 1=fast exit DLL on (tXP)
1595 */
1596 dll_on = 1;
York Sunf5b6fb72011-03-02 14:24:11 -08001597
York Sun03e664d2015-01-06 13:18:50 -08001598 wr_mclk = picos_to_mclk(ctrl_num, common_dimm->twr_ps);
York Sunfcea3062012-08-17 08:22:38 +00001599 if (wr_mclk <= 16) {
1600 wr = wr_table[wr_mclk - 5];
1601 } else {
1602 printf("Error: unsupported write recovery for mode register "
1603 "wr_mclk = %d\n", wr_mclk);
1604 }
York Sunf5b6fb72011-03-02 14:24:11 -08001605
Dave Liuc360cea2009-03-14 12:48:30 +08001606 dll_rst = 0; /* dll no reset */
1607 mode = 0; /* normal mode */
1608
1609 /* look up table to get the cas latency bits */
York Sunfcea3062012-08-17 08:22:38 +00001610 if (cas_latency >= 5 && cas_latency <= 16) {
1611 unsigned char cas_latency_table[] = {
Dave Liuc360cea2009-03-14 12:48:30 +08001612 0x2, /* 5 clocks */
1613 0x4, /* 6 clocks */
1614 0x6, /* 7 clocks */
1615 0x8, /* 8 clocks */
1616 0xa, /* 9 clocks */
1617 0xc, /* 10 clocks */
York Sunfcea3062012-08-17 08:22:38 +00001618 0xe, /* 11 clocks */
1619 0x1, /* 12 clocks */
1620 0x3, /* 13 clocks */
1621 0x5, /* 14 clocks */
1622 0x7, /* 15 clocks */
1623 0x9, /* 16 clocks */
Dave Liuc360cea2009-03-14 12:48:30 +08001624 };
1625 caslat = cas_latency_table[cas_latency - 5];
York Sunfcea3062012-08-17 08:22:38 +00001626 } else {
1627 printf("Error: unsupported cas latency for mode register\n");
Dave Liuc360cea2009-03-14 12:48:30 +08001628 }
York Sunfcea3062012-08-17 08:22:38 +00001629
Dave Liuc360cea2009-03-14 12:48:30 +08001630 bt = 0; /* Nibble sequential */
1631
1632 switch (popts->burst_length) {
1633 case DDR_BL8:
1634 bl = 0;
1635 break;
1636 case DDR_OTF:
1637 bl = 1;
1638 break;
1639 case DDR_BC4:
1640 bl = 2;
1641 break;
1642 default:
1643 printf("Error: invalid burst length of %u specified. "
1644 " Defaulting to on-the-fly BC4 or BL8 beats.\n",
1645 popts->burst_length);
1646 bl = 1;
1647 break;
1648 }
1649
1650 sdmode = (0
1651 | ((dll_on & 0x1) << 12)
1652 | ((wr & 0x7) << 9)
1653 | ((dll_rst & 0x1) << 8)
1654 | ((mode & 0x1) << 7)
1655 | (((caslat >> 1) & 0x7) << 4)
1656 | ((bt & 0x1) << 3)
York Sunfcea3062012-08-17 08:22:38 +00001657 | ((caslat & 1) << 2)
Dave Liuc360cea2009-03-14 12:48:30 +08001658 | ((bl & 0x3) << 0)
1659 );
1660
1661 ddr->ddr_sdram_mode = (0
1662 | ((esdmode & 0xFFFF) << 16)
1663 | ((sdmode & 0xFFFF) << 0)
1664 );
1665
1666 debug("FSLDDR: ddr_sdram_mode = 0x%08x\n", ddr->ddr_sdram_mode);
York Sune1fd16b2011-01-10 12:03:00 +00001667
1668 if (unq_mrs_en) { /* unique mode registers are supported */
Kumar Galadea7f882011-11-09 10:05:10 -06001669 for (i = 1; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
York Sune1fd16b2011-01-10 12:03:00 +00001670 if (popts->rtt_override)
1671 rtt = popts->rtt_override_value;
1672 else
1673 rtt = popts->cs_local_opts[i].odt_rtt_norm;
1674
1675 esdmode &= 0xFDBB; /* clear bit 9,6,2 */
1676 esdmode |= (0
1677 | ((rtt & 0x4) << 7) /* rtt field is split */
1678 | ((rtt & 0x2) << 5) /* rtt field is split */
1679 | ((rtt & 0x1) << 2) /* rtt field is split */
1680 );
1681 switch (i) {
1682 case 1:
1683 ddr->ddr_sdram_mode_3 = (0
1684 | ((esdmode & 0xFFFF) << 16)
1685 | ((sdmode & 0xFFFF) << 0)
1686 );
1687 break;
1688 case 2:
1689 ddr->ddr_sdram_mode_5 = (0
1690 | ((esdmode & 0xFFFF) << 16)
1691 | ((sdmode & 0xFFFF) << 0)
1692 );
1693 break;
1694 case 3:
1695 ddr->ddr_sdram_mode_7 = (0
1696 | ((esdmode & 0xFFFF) << 16)
1697 | ((sdmode & 0xFFFF) << 0)
1698 );
1699 break;
1700 }
1701 }
1702 debug("FSLDDR: ddr_sdram_mode_3 = 0x%08x\n",
1703 ddr->ddr_sdram_mode_3);
1704 debug("FSLDDR: ddr_sdram_mode_5 = 0x%08x\n",
1705 ddr->ddr_sdram_mode_5);
1706 debug("FSLDDR: ddr_sdram_mode_5 = 0x%08x\n",
1707 ddr->ddr_sdram_mode_5);
1708 }
Dave Liuc360cea2009-03-14 12:48:30 +08001709}
1710
York Sun5614e712013-09-30 09:22:09 -07001711#else /* !CONFIG_SYS_FSL_DDR3 */
Dave Liuc360cea2009-03-14 12:48:30 +08001712
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001713/* DDR SDRAM Mode configuration set (DDR_SDRAM_MODE) */
York Sun03e664d2015-01-06 13:18:50 -08001714static void set_ddr_sdram_mode(const unsigned int ctrl_num,
1715 fsl_ddr_cfg_regs_t *ddr,
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001716 const memctl_options_t *popts,
1717 const common_timing_params_t *common_dimm,
1718 unsigned int cas_latency,
York Sune1fd16b2011-01-10 12:03:00 +00001719 unsigned int additive_latency,
1720 const unsigned int unq_mrs_en)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001721{
1722 unsigned short esdmode; /* Extended SDRAM mode */
1723 unsigned short sdmode; /* SDRAM mode */
1724
1725 /*
1726 * FIXME: This ought to be pre-calculated in a
1727 * technology-specific routine,
1728 * e.g. compute_DDR2_mode_register(), and then the
1729 * sdmode and esdmode passed in as part of common_dimm.
1730 */
1731
1732 /* Extended Mode Register */
1733 unsigned int mrs = 0; /* Mode Register Set */
1734 unsigned int outputs = 0; /* 0=Enabled, 1=Disabled */
1735 unsigned int rdqs_en = 0; /* RDQS Enable: 0=no, 1=yes */
1736 unsigned int dqs_en = 0; /* DQS# Enable: 0=enable, 1=disable */
1737 unsigned int ocd = 0; /* 0x0=OCD not supported,
1738 0x7=OCD default state */
1739 unsigned int rtt;
1740 unsigned int al; /* Posted CAS# additive latency (AL) */
1741 unsigned int ods = 0; /* Output Drive Strength:
1742 0 = Full strength (18ohm)
1743 1 = Reduced strength (4ohm) */
1744 unsigned int dll_en = 0; /* DLL Enable 0=Enable (Normal),
1745 1=Disable (Test/Debug) */
1746
1747 /* Mode Register (MR) */
1748 unsigned int mr; /* Mode Register Definition */
1749 unsigned int pd; /* Power-Down Mode */
1750 unsigned int wr; /* Write Recovery */
1751 unsigned int dll_res; /* DLL Reset */
1752 unsigned int mode; /* Normal=0 or Test=1 */
Kumar Gala302e52e2008-09-05 14:40:29 -05001753 unsigned int caslat = 0;/* CAS# latency */
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001754 /* BT: Burst Type (0=Sequential, 1=Interleaved) */
1755 unsigned int bt;
1756 unsigned int bl; /* BL: Burst Length */
1757
Priyanka Jain0dd38a32013-09-25 10:41:19 +05301758 dqs_en = !popts->dqs_config;
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001759 rtt = fsl_ddr_get_rtt();
1760
1761 al = additive_latency;
1762
1763 esdmode = (0
1764 | ((mrs & 0x3) << 14)
1765 | ((outputs & 0x1) << 12)
1766 | ((rdqs_en & 0x1) << 11)
1767 | ((dqs_en & 0x1) << 10)
1768 | ((ocd & 0x7) << 7)
1769 | ((rtt & 0x2) << 5) /* rtt field is split */
1770 | ((al & 0x7) << 3)
1771 | ((rtt & 0x1) << 2) /* rtt field is split */
1772 | ((ods & 0x1) << 1)
1773 | ((dll_en & 0x1) << 0)
1774 );
1775
1776 mr = 0; /* FIXME: CHECKME */
1777
1778 /*
1779 * 0 = Fast Exit (Normal)
1780 * 1 = Slow Exit (Low Power)
1781 */
1782 pd = 0;
1783
York Sun5614e712013-09-30 09:22:09 -07001784#if defined(CONFIG_SYS_FSL_DDR1)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001785 wr = 0; /* Historical */
York Sun5614e712013-09-30 09:22:09 -07001786#elif defined(CONFIG_SYS_FSL_DDR2)
York Sun03e664d2015-01-06 13:18:50 -08001787 wr = picos_to_mclk(ctrl_num, common_dimm->twr_ps);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001788#endif
1789 dll_res = 0;
1790 mode = 0;
1791
York Sun5614e712013-09-30 09:22:09 -07001792#if defined(CONFIG_SYS_FSL_DDR1)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001793 if (1 <= cas_latency && cas_latency <= 4) {
1794 unsigned char mode_caslat_table[4] = {
1795 0x5, /* 1.5 clocks */
1796 0x2, /* 2.0 clocks */
1797 0x6, /* 2.5 clocks */
1798 0x3 /* 3.0 clocks */
1799 };
Kumar Gala302e52e2008-09-05 14:40:29 -05001800 caslat = mode_caslat_table[cas_latency - 1];
1801 } else {
1802 printf("Warning: unknown cas_latency %d\n", cas_latency);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001803 }
York Sun5614e712013-09-30 09:22:09 -07001804#elif defined(CONFIG_SYS_FSL_DDR2)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001805 caslat = cas_latency;
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001806#endif
1807 bt = 0;
1808
1809 switch (popts->burst_length) {
Dave Liuc360cea2009-03-14 12:48:30 +08001810 case DDR_BL4:
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001811 bl = 2;
1812 break;
Dave Liuc360cea2009-03-14 12:48:30 +08001813 case DDR_BL8:
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001814 bl = 3;
1815 break;
1816 default:
1817 printf("Error: invalid burst length of %u specified. "
1818 " Defaulting to 4 beats.\n",
1819 popts->burst_length);
1820 bl = 2;
1821 break;
1822 }
1823
1824 sdmode = (0
1825 | ((mr & 0x3) << 14)
1826 | ((pd & 0x1) << 12)
1827 | ((wr & 0x7) << 9)
1828 | ((dll_res & 0x1) << 8)
1829 | ((mode & 0x1) << 7)
1830 | ((caslat & 0x7) << 4)
1831 | ((bt & 0x1) << 3)
1832 | ((bl & 0x7) << 0)
1833 );
1834
1835 ddr->ddr_sdram_mode = (0
1836 | ((esdmode & 0xFFFF) << 16)
1837 | ((sdmode & 0xFFFF) << 0)
1838 );
Haiying Wang1f293b42008-10-03 12:37:26 -04001839 debug("FSLDDR: ddr_sdram_mode = 0x%08x\n", ddr->ddr_sdram_mode);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001840}
Dave Liuc360cea2009-03-14 12:48:30 +08001841#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001842
1843/* DDR SDRAM Data Initialization (DDR_DATA_INIT) */
1844static void set_ddr_data_init(fsl_ddr_cfg_regs_t *ddr)
1845{
1846 unsigned int init_value; /* Initialization value */
1847
Anatolij Gustschin5b933942013-01-21 23:50:27 +00001848#ifdef CONFIG_MEM_INIT_VALUE
1849 init_value = CONFIG_MEM_INIT_VALUE;
1850#else
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001851 init_value = 0xDEADBEEF;
Anatolij Gustschin5b933942013-01-21 23:50:27 +00001852#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001853 ddr->ddr_data_init = init_value;
1854}
1855
1856/*
1857 * DDR SDRAM Clock Control (DDR_SDRAM_CLK_CNTL)
1858 * The old controller on the 8540/60 doesn't have this register.
1859 * Hope it's OK to set it (to 0) anyway.
1860 */
1861static void set_ddr_sdram_clk_cntl(fsl_ddr_cfg_regs_t *ddr,
1862 const memctl_options_t *popts)
1863{
1864 unsigned int clk_adjust; /* Clock adjust */
Curt Bruned7c865b2015-02-13 10:57:11 -08001865 unsigned int ss_en = 0; /* Source synchronous enable */
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001866
York Sun3c3d8ab2016-11-16 11:23:23 -08001867#if defined(CONFIG_ARCH_MPC8541) || defined(CONFIG_ARCH_MPC8555)
Curt Bruned7c865b2015-02-13 10:57:11 -08001868 /* Per FSL Application Note: AN2805 */
1869 ss_en = 1;
1870#endif
Shengzhou Liud8e51632016-05-04 10:20:21 +08001871 if (fsl_ddr_get_version(0) >= 0x40701) {
1872 /* clk_adjust in 5-bits on T-series and LS-series */
1873 clk_adjust = (popts->clk_adjust & 0x1F) << 22;
1874 } else {
1875 /* clk_adjust in 4-bits on earlier MPC85xx and P-series */
1876 clk_adjust = (popts->clk_adjust & 0xF) << 23;
1877 }
1878
Curt Bruned7c865b2015-02-13 10:57:11 -08001879 ddr->ddr_sdram_clk_cntl = (0
1880 | ((ss_en & 0x1) << 31)
Shengzhou Liud8e51632016-05-04 10:20:21 +08001881 | clk_adjust
Curt Bruned7c865b2015-02-13 10:57:11 -08001882 );
york9490ff42010-07-02 22:25:55 +00001883 debug("FSLDDR: clk_cntl = 0x%08x\n", ddr->ddr_sdram_clk_cntl);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001884}
1885
1886/* DDR Initialization Address (DDR_INIT_ADDR) */
1887static void set_ddr_init_addr(fsl_ddr_cfg_regs_t *ddr)
1888{
1889 unsigned int init_addr = 0; /* Initialization address */
1890
1891 ddr->ddr_init_addr = init_addr;
1892}
1893
1894/* DDR Initialization Address (DDR_INIT_EXT_ADDR) */
1895static void set_ddr_init_ext_addr(fsl_ddr_cfg_regs_t *ddr)
1896{
1897 unsigned int uia = 0; /* Use initialization address */
1898 unsigned int init_ext_addr = 0; /* Initialization address */
1899
1900 ddr->ddr_init_ext_addr = (0
1901 | ((uia & 0x1) << 31)
1902 | (init_ext_addr & 0xF)
1903 );
1904}
1905
1906/* DDR SDRAM Timing Configuration 4 (TIMING_CFG_4) */
Dave Liuec145e82010-03-05 12:22:00 +08001907static void set_timing_cfg_4(fsl_ddr_cfg_regs_t *ddr,
1908 const memctl_options_t *popts)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001909{
1910 unsigned int rwt = 0; /* Read-to-write turnaround for same CS */
1911 unsigned int wrt = 0; /* Write-to-read turnaround for same CS */
1912 unsigned int rrt = 0; /* Read-to-read turnaround for same CS */
1913 unsigned int wwt = 0; /* Write-to-write turnaround for same CS */
York Sun6c6e0062015-11-04 10:03:21 -08001914 unsigned int trwt_mclk = 0; /* ext_rwt */
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001915 unsigned int dll_lock = 0; /* DDR SDRAM DLL Lock Time */
1916
York Sun34e026f2014-03-27 17:54:47 -07001917#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
Dave Liuec145e82010-03-05 12:22:00 +08001918 if (popts->burst_length == DDR_BL8) {
1919 /* We set BL/2 for fixed BL8 */
1920 rrt = 0; /* BL/2 clocks */
1921 wwt = 0; /* BL/2 clocks */
1922 } else {
1923 /* We need to set BL/2 + 2 to BC4 and OTF */
1924 rrt = 2; /* BL/2 + 2 clocks */
1925 wwt = 2; /* BL/2 + 2 clocks */
1926 }
York Sun34e026f2014-03-27 17:54:47 -07001927#endif
York Sun34e026f2014-03-27 17:54:47 -07001928#ifdef CONFIG_SYS_FSL_DDR4
1929 dll_lock = 2; /* tDLLK = 1024 clocks */
1930#elif defined(CONFIG_SYS_FSL_DDR3)
Dave Liuc360cea2009-03-14 12:48:30 +08001931 dll_lock = 1; /* tDLLK = 512 clocks from spec */
1932#endif
York Sun6c6e0062015-11-04 10:03:21 -08001933
1934 if (popts->trwt_override)
1935 trwt_mclk = popts->trwt;
1936
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001937 ddr->timing_cfg_4 = (0
1938 | ((rwt & 0xf) << 28)
1939 | ((wrt & 0xf) << 24)
1940 | ((rrt & 0xf) << 20)
1941 | ((wwt & 0xf) << 16)
York Sun6c6e0062015-11-04 10:03:21 -08001942 | ((trwt_mclk & 0xc) << 12)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001943 | (dll_lock & 0x3)
1944 );
Haiying Wang1f293b42008-10-03 12:37:26 -04001945 debug("FSLDDR: timing_cfg_4 = 0x%08x\n", ddr->timing_cfg_4);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001946}
1947
1948/* DDR SDRAM Timing Configuration 5 (TIMING_CFG_5) */
York Sune1fd16b2011-01-10 12:03:00 +00001949static void set_timing_cfg_5(fsl_ddr_cfg_regs_t *ddr, unsigned int cas_latency)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001950{
1951 unsigned int rodt_on = 0; /* Read to ODT on */
1952 unsigned int rodt_off = 0; /* Read to ODT off */
1953 unsigned int wodt_on = 0; /* Write to ODT on */
1954 unsigned int wodt_off = 0; /* Write to ODT off */
1955
York Sun34e026f2014-03-27 17:54:47 -07001956#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
1957 unsigned int wr_lat = ((ddr->timing_cfg_2 & 0x00780000) >> 19) +
1958 ((ddr->timing_cfg_2 & 0x00040000) >> 14);
York Sune1fd16b2011-01-10 12:03:00 +00001959 /* rodt_on = timing_cfg_1[caslat] - timing_cfg_2[wrlat] + 1 */
York Sun34e026f2014-03-27 17:54:47 -07001960 if (cas_latency >= wr_lat)
1961 rodt_on = cas_latency - wr_lat + 1;
Dave Liuc360cea2009-03-14 12:48:30 +08001962 rodt_off = 4; /* 4 clocks */
york5fb8a8a2010-07-02 22:25:56 +00001963 wodt_on = 1; /* 1 clocks */
Dave Liuc360cea2009-03-14 12:48:30 +08001964 wodt_off = 4; /* 4 clocks */
1965#endif
1966
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001967 ddr->timing_cfg_5 = (0
Dave Liu22ff3d02008-11-21 16:31:29 +08001968 | ((rodt_on & 0x1f) << 24)
1969 | ((rodt_off & 0x7) << 20)
1970 | ((wodt_on & 0x1f) << 12)
1971 | ((wodt_off & 0x7) << 8)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001972 );
Haiying Wang1f293b42008-10-03 12:37:26 -04001973 debug("FSLDDR: timing_cfg_5 = 0x%08x\n", ddr->timing_cfg_5);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001974}
1975
York Sun34e026f2014-03-27 17:54:47 -07001976#ifdef CONFIG_SYS_FSL_DDR4
1977static void set_timing_cfg_6(fsl_ddr_cfg_regs_t *ddr)
1978{
1979 unsigned int hs_caslat = 0;
1980 unsigned int hs_wrlat = 0;
1981 unsigned int hs_wrrec = 0;
1982 unsigned int hs_clkadj = 0;
1983 unsigned int hs_wrlvl_start = 0;
1984
1985 ddr->timing_cfg_6 = (0
1986 | ((hs_caslat & 0x1f) << 24)
1987 | ((hs_wrlat & 0x1f) << 19)
1988 | ((hs_wrrec & 0x1f) << 12)
1989 | ((hs_clkadj & 0x1f) << 6)
1990 | ((hs_wrlvl_start & 0x1f) << 0)
1991 );
1992 debug("FSLDDR: timing_cfg_6 = 0x%08x\n", ddr->timing_cfg_6);
1993}
1994
York Sun03e664d2015-01-06 13:18:50 -08001995static void set_timing_cfg_7(const unsigned int ctrl_num,
1996 fsl_ddr_cfg_regs_t *ddr,
York Sun426230a2018-01-29 09:44:33 -08001997 const memctl_options_t *popts,
York Sun03e664d2015-01-06 13:18:50 -08001998 const common_timing_params_t *common_dimm)
York Sun34e026f2014-03-27 17:54:47 -07001999{
2000 unsigned int txpr, tcksre, tcksrx;
Shengzhou Liueb118802016-03-10 17:36:56 +08002001 unsigned int cke_rst, cksre, cksrx, par_lat = 0, cs_to_cmd;
2002 const unsigned int mclk_ps = get_memory_clk_period_ps(ctrl_num);
York Sun34e026f2014-03-27 17:54:47 -07002003
York Sun03e664d2015-01-06 13:18:50 -08002004 txpr = max(5U, picos_to_mclk(ctrl_num, common_dimm->trfc1_ps + 10000));
2005 tcksre = max(5U, picos_to_mclk(ctrl_num, 10000));
2006 tcksrx = max(5U, picos_to_mclk(ctrl_num, 10000));
Shengzhou Liueb118802016-03-10 17:36:56 +08002007
York Sun426230a2018-01-29 09:44:33 -08002008 if (ddr->ddr_sdram_cfg_2 & SDRAM_CFG2_AP_EN &&
2009 CONFIG_FSL_SDRAM_TYPE == SDRAM_TYPE_DDR4) {
2010 /* for DDR4 only */
York Sunc0c32af2018-01-29 09:44:35 -08002011 par_lat = (ddr->ddr_sdram_rcw_2 & 0xf) + 1;
York Sun426230a2018-01-29 09:44:33 -08002012 debug("PAR_LAT = %u for mclk_ps = %d\n", par_lat, mclk_ps);
Shengzhou Liueb118802016-03-10 17:36:56 +08002013 }
2014
York Sun34e026f2014-03-27 17:54:47 -07002015 cs_to_cmd = 0;
2016
2017 if (txpr <= 200)
2018 cke_rst = 0;
2019 else if (txpr <= 256)
2020 cke_rst = 1;
2021 else if (txpr <= 512)
2022 cke_rst = 2;
2023 else
2024 cke_rst = 3;
2025
2026 if (tcksre <= 19)
2027 cksre = tcksre - 5;
2028 else
2029 cksre = 15;
2030
2031 if (tcksrx <= 19)
2032 cksrx = tcksrx - 5;
2033 else
2034 cksrx = 15;
2035
2036 ddr->timing_cfg_7 = (0
2037 | ((cke_rst & 0x3) << 28)
2038 | ((cksre & 0xf) << 24)
2039 | ((cksrx & 0xf) << 20)
2040 | ((par_lat & 0xf) << 16)
2041 | ((cs_to_cmd & 0xf) << 4)
2042 );
2043 debug("FSLDDR: timing_cfg_7 = 0x%08x\n", ddr->timing_cfg_7);
2044}
2045
York Sun03e664d2015-01-06 13:18:50 -08002046static void set_timing_cfg_8(const unsigned int ctrl_num,
2047 fsl_ddr_cfg_regs_t *ddr,
York Sun34e026f2014-03-27 17:54:47 -07002048 const memctl_options_t *popts,
2049 const common_timing_params_t *common_dimm,
2050 unsigned int cas_latency)
2051{
York Sun426230a2018-01-29 09:44:33 -08002052 int rwt_bg, wrt_bg, rrt_bg, wwt_bg;
York Sun34e026f2014-03-27 17:54:47 -07002053 unsigned int acttoact_bg, wrtord_bg, pre_all_rec;
York Sun426230a2018-01-29 09:44:33 -08002054 int tccdl = picos_to_mclk(ctrl_num, common_dimm->tccdl_ps);
2055 int wr_lat = ((ddr->timing_cfg_2 & 0x00780000) >> 19) +
2056 ((ddr->timing_cfg_2 & 0x00040000) >> 14);
York Sun34e026f2014-03-27 17:54:47 -07002057
2058 rwt_bg = cas_latency + 2 + 4 - wr_lat;
2059 if (rwt_bg < tccdl)
2060 rwt_bg = tccdl - rwt_bg;
2061 else
2062 rwt_bg = 0;
2063
2064 wrt_bg = wr_lat + 4 + 1 - cas_latency;
2065 if (wrt_bg < tccdl)
2066 wrt_bg = tccdl - wrt_bg;
2067 else
2068 wrt_bg = 0;
2069
2070 if (popts->burst_length == DDR_BL8) {
2071 rrt_bg = tccdl - 4;
2072 wwt_bg = tccdl - 4;
2073 } else {
2074 rrt_bg = tccdl - 2;
York Sundc1437a2015-01-06 13:18:52 -08002075 wwt_bg = tccdl - 2;
York Sun34e026f2014-03-27 17:54:47 -07002076 }
2077
York Sun03e664d2015-01-06 13:18:50 -08002078 acttoact_bg = picos_to_mclk(ctrl_num, common_dimm->trrdl_ps);
2079 wrtord_bg = max(4U, picos_to_mclk(ctrl_num, 7500));
York Sun3d75ec92014-06-26 11:14:44 -07002080 if (popts->otf_burst_chop_en)
2081 wrtord_bg += 2;
2082
York Sun34e026f2014-03-27 17:54:47 -07002083 pre_all_rec = 0;
2084
2085 ddr->timing_cfg_8 = (0
2086 | ((rwt_bg & 0xf) << 28)
2087 | ((wrt_bg & 0xf) << 24)
2088 | ((rrt_bg & 0xf) << 20)
2089 | ((wwt_bg & 0xf) << 16)
2090 | ((acttoact_bg & 0xf) << 12)
2091 | ((wrtord_bg & 0xf) << 8)
2092 | ((pre_all_rec & 0x1f) << 0)
2093 );
2094
2095 debug("FSLDDR: timing_cfg_8 = 0x%08x\n", ddr->timing_cfg_8);
2096}
2097
York Sunc0c32af2018-01-29 09:44:35 -08002098static void set_timing_cfg_9(const unsigned int ctrl_num,
2099 fsl_ddr_cfg_regs_t *ddr,
2100 const memctl_options_t *popts,
2101 const common_timing_params_t *common_dimm)
York Sun34e026f2014-03-27 17:54:47 -07002102{
York Sunc0c32af2018-01-29 09:44:35 -08002103 unsigned int refrec_cid_mclk = 0;
2104 unsigned int acttoact_cid_mclk = 0;
2105
2106 if (popts->package_3ds) {
2107 refrec_cid_mclk =
2108 picos_to_mclk(ctrl_num, common_dimm->trfc_slr_ps);
2109 acttoact_cid_mclk = 4U; /* tRRDS_slr */
2110 }
2111
2112 ddr->timing_cfg_9 = (refrec_cid_mclk & 0x3ff) << 16 |
2113 (acttoact_cid_mclk & 0xf) << 8;
2114
York Sun34e026f2014-03-27 17:54:47 -07002115 debug("FSLDDR: timing_cfg_9 = 0x%08x\n", ddr->timing_cfg_9);
2116}
2117
York Sunf80d6472014-09-11 13:32:06 -07002118/* This function needs to be called after set_ddr_sdram_cfg() is called */
York Sun34e026f2014-03-27 17:54:47 -07002119static void set_ddr_dq_mapping(fsl_ddr_cfg_regs_t *ddr,
2120 const dimm_params_t *dimm_params)
2121{
York Sunf80d6472014-09-11 13:32:06 -07002122 unsigned int acc_ecc_en = (ddr->ddr_sdram_cfg >> 2) & 0x1;
York Sun6b95be22015-03-19 09:30:27 -07002123 int i;
York Sunf80d6472014-09-11 13:32:06 -07002124
York Sun6b95be22015-03-19 09:30:27 -07002125 for (i = 0; i < CONFIG_DIMM_SLOTS_PER_CTLR; i++) {
2126 if (dimm_params[i].n_ranks)
2127 break;
2128 }
2129 if (i >= CONFIG_DIMM_SLOTS_PER_CTLR) {
2130 puts("DDR error: no DIMM found!\n");
2131 return;
2132 }
York Sun34e026f2014-03-27 17:54:47 -07002133
York Sun6b95be22015-03-19 09:30:27 -07002134 ddr->dq_map_0 = ((dimm_params[i].dq_mapping[0] & 0x3F) << 26) |
2135 ((dimm_params[i].dq_mapping[1] & 0x3F) << 20) |
2136 ((dimm_params[i].dq_mapping[2] & 0x3F) << 14) |
2137 ((dimm_params[i].dq_mapping[3] & 0x3F) << 8) |
2138 ((dimm_params[i].dq_mapping[4] & 0x3F) << 2);
York Sun34e026f2014-03-27 17:54:47 -07002139
York Sun6b95be22015-03-19 09:30:27 -07002140 ddr->dq_map_1 = ((dimm_params[i].dq_mapping[5] & 0x3F) << 26) |
2141 ((dimm_params[i].dq_mapping[6] & 0x3F) << 20) |
2142 ((dimm_params[i].dq_mapping[7] & 0x3F) << 14) |
2143 ((dimm_params[i].dq_mapping[10] & 0x3F) << 8) |
2144 ((dimm_params[i].dq_mapping[11] & 0x3F) << 2);
2145
2146 ddr->dq_map_2 = ((dimm_params[i].dq_mapping[12] & 0x3F) << 26) |
2147 ((dimm_params[i].dq_mapping[13] & 0x3F) << 20) |
2148 ((dimm_params[i].dq_mapping[14] & 0x3F) << 14) |
2149 ((dimm_params[i].dq_mapping[15] & 0x3F) << 8) |
2150 ((dimm_params[i].dq_mapping[16] & 0x3F) << 2);
York Sun34e026f2014-03-27 17:54:47 -07002151
York Sunf80d6472014-09-11 13:32:06 -07002152 /* dq_map for ECC[4:7] is set to 0 if accumulated ECC is enabled */
York Sun6b95be22015-03-19 09:30:27 -07002153 ddr->dq_map_3 = ((dimm_params[i].dq_mapping[17] & 0x3F) << 26) |
2154 ((dimm_params[i].dq_mapping[8] & 0x3F) << 20) |
York Sunf80d6472014-09-11 13:32:06 -07002155 (acc_ecc_en ? 0 :
York Sun6b95be22015-03-19 09:30:27 -07002156 (dimm_params[i].dq_mapping[9] & 0x3F) << 14) |
2157 dimm_params[i].dq_mapping_ors;
York Sun34e026f2014-03-27 17:54:47 -07002158
2159 debug("FSLDDR: dq_map_0 = 0x%08x\n", ddr->dq_map_0);
2160 debug("FSLDDR: dq_map_1 = 0x%08x\n", ddr->dq_map_1);
2161 debug("FSLDDR: dq_map_2 = 0x%08x\n", ddr->dq_map_2);
2162 debug("FSLDDR: dq_map_3 = 0x%08x\n", ddr->dq_map_3);
2163}
2164static void set_ddr_sdram_cfg_3(fsl_ddr_cfg_regs_t *ddr,
2165 const memctl_options_t *popts)
2166{
2167 int rd_pre;
2168
2169 rd_pre = popts->quad_rank_present ? 1 : 0;
2170
2171 ddr->ddr_sdram_cfg_3 = (rd_pre & 0x1) << 16;
York Sun426230a2018-01-29 09:44:33 -08002172 /* Disable MRS on parity error for RDIMMs */
2173 ddr->ddr_sdram_cfg_3 |= popts->registered_dimm_en ? 1 : 0;
York Sun34e026f2014-03-27 17:54:47 -07002174
York Sunc0c32af2018-01-29 09:44:35 -08002175 if (popts->package_3ds) { /* only 2,4,8 are supported */
2176 if ((popts->package_3ds + 1) & 0x1) {
2177 printf("Error: Unsupported 3DS DIMM with %d die\n",
2178 popts->package_3ds + 1);
2179 } else {
2180 ddr->ddr_sdram_cfg_3 |= ((popts->package_3ds + 1) >> 1)
2181 << 4;
2182 }
2183 }
2184
York Sun34e026f2014-03-27 17:54:47 -07002185 debug("FSLDDR: ddr_sdram_cfg_3 = 0x%08x\n", ddr->ddr_sdram_cfg_3);
2186}
2187#endif /* CONFIG_SYS_FSL_DDR4 */
2188
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002189/* DDR ZQ Calibration Control (DDR_ZQ_CNTL) */
Dave Liuc360cea2009-03-14 12:48:30 +08002190static void set_ddr_zq_cntl(fsl_ddr_cfg_regs_t *ddr, unsigned int zq_en)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002191{
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002192 unsigned int zqinit = 0;/* POR ZQ Calibration Time (tZQinit) */
2193 /* Normal Operation Full Calibration Time (tZQoper) */
2194 unsigned int zqoper = 0;
2195 /* Normal Operation Short Calibration Time (tZQCS) */
2196 unsigned int zqcs = 0;
York Sun34e026f2014-03-27 17:54:47 -07002197#ifdef CONFIG_SYS_FSL_DDR4
2198 unsigned int zqcs_init;
2199#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002200
Dave Liuc360cea2009-03-14 12:48:30 +08002201 if (zq_en) {
York Sun34e026f2014-03-27 17:54:47 -07002202#ifdef CONFIG_SYS_FSL_DDR4
2203 zqinit = 10; /* 1024 clocks */
2204 zqoper = 9; /* 512 clocks */
2205 zqcs = 7; /* 128 clocks */
2206 zqcs_init = 5; /* 1024 refresh sequences */
2207#else
Dave Liuc360cea2009-03-14 12:48:30 +08002208 zqinit = 9; /* 512 clocks */
2209 zqoper = 8; /* 256 clocks */
2210 zqcs = 6; /* 64 clocks */
York Sun34e026f2014-03-27 17:54:47 -07002211#endif
Dave Liuc360cea2009-03-14 12:48:30 +08002212 }
2213
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002214 ddr->ddr_zq_cntl = (0
2215 | ((zq_en & 0x1) << 31)
2216 | ((zqinit & 0xF) << 24)
2217 | ((zqoper & 0xF) << 16)
2218 | ((zqcs & 0xF) << 8)
York Sun34e026f2014-03-27 17:54:47 -07002219#ifdef CONFIG_SYS_FSL_DDR4
2220 | ((zqcs_init & 0xF) << 0)
2221#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002222 );
York Sune1fd16b2011-01-10 12:03:00 +00002223 debug("FSLDDR: zq_cntl = 0x%08x\n", ddr->ddr_zq_cntl);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002224}
2225
2226/* DDR Write Leveling Control (DDR_WRLVL_CNTL) */
Dave Liubdc9f7b2009-12-16 10:24:37 -06002227static void set_ddr_wrlvl_cntl(fsl_ddr_cfg_regs_t *ddr, unsigned int wrlvl_en,
2228 const memctl_options_t *popts)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002229{
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002230 /*
2231 * First DQS pulse rising edge after margining mode
2232 * is programmed (tWL_MRD)
2233 */
2234 unsigned int wrlvl_mrd = 0;
2235 /* ODT delay after margining mode is programmed (tWL_ODTEN) */
2236 unsigned int wrlvl_odten = 0;
2237 /* DQS/DQS_ delay after margining mode is programmed (tWL_DQSEN) */
2238 unsigned int wrlvl_dqsen = 0;
2239 /* WRLVL_SMPL: Write leveling sample time */
2240 unsigned int wrlvl_smpl = 0;
2241 /* WRLVL_WLR: Write leveling repeition time */
2242 unsigned int wrlvl_wlr = 0;
2243 /* WRLVL_START: Write leveling start time */
2244 unsigned int wrlvl_start = 0;
2245
Dave Liuc360cea2009-03-14 12:48:30 +08002246 /* suggest enable write leveling for DDR3 due to fly-by topology */
2247 if (wrlvl_en) {
2248 /* tWL_MRD min = 40 nCK, we set it 64 */
2249 wrlvl_mrd = 0x6;
2250 /* tWL_ODTEN 128 */
2251 wrlvl_odten = 0x7;
2252 /* tWL_DQSEN min = 25 nCK, we set it 32 */
2253 wrlvl_dqsen = 0x5;
2254 /*
Dave Liubdc9f7b2009-12-16 10:24:37 -06002255 * Write leveling sample time at least need 6 clocks
2256 * higher than tWLO to allow enough time for progagation
2257 * delay and sampling the prime data bits.
Dave Liuc360cea2009-03-14 12:48:30 +08002258 */
2259 wrlvl_smpl = 0xf;
2260 /*
2261 * Write leveling repetition time
2262 * at least tWLO + 6 clocks clocks
york5fb8a8a2010-07-02 22:25:56 +00002263 * we set it 64
Dave Liuc360cea2009-03-14 12:48:30 +08002264 */
york5fb8a8a2010-07-02 22:25:56 +00002265 wrlvl_wlr = 0x6;
Dave Liuc360cea2009-03-14 12:48:30 +08002266 /*
2267 * Write leveling start time
2268 * The value use for the DQS_ADJUST for the first sample
York Sune1fd16b2011-01-10 12:03:00 +00002269 * when write leveling is enabled. It probably needs to be
Robert P. J. Day62a3b7d2016-07-15 13:44:45 -04002270 * overridden per platform.
Dave Liuc360cea2009-03-14 12:48:30 +08002271 */
2272 wrlvl_start = 0x8;
Dave Liubdc9f7b2009-12-16 10:24:37 -06002273 /*
2274 * Override the write leveling sample and start time
2275 * according to specific board
2276 */
2277 if (popts->wrlvl_override) {
2278 wrlvl_smpl = popts->wrlvl_sample;
2279 wrlvl_start = popts->wrlvl_start;
2280 }
Dave Liuc360cea2009-03-14 12:48:30 +08002281 }
2282
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002283 ddr->ddr_wrlvl_cntl = (0
2284 | ((wrlvl_en & 0x1) << 31)
2285 | ((wrlvl_mrd & 0x7) << 24)
2286 | ((wrlvl_odten & 0x7) << 20)
2287 | ((wrlvl_dqsen & 0x7) << 16)
2288 | ((wrlvl_smpl & 0xf) << 12)
2289 | ((wrlvl_wlr & 0x7) << 8)
Dave Liu22ff3d02008-11-21 16:31:29 +08002290 | ((wrlvl_start & 0x1F) << 0)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002291 );
York Sune1fd16b2011-01-10 12:03:00 +00002292 debug("FSLDDR: wrlvl_cntl = 0x%08x\n", ddr->ddr_wrlvl_cntl);
York Sun57495e42012-10-08 07:44:22 +00002293 ddr->ddr_wrlvl_cntl_2 = popts->wrlvl_ctl_2;
2294 debug("FSLDDR: wrlvl_cntl_2 = 0x%08x\n", ddr->ddr_wrlvl_cntl_2);
2295 ddr->ddr_wrlvl_cntl_3 = popts->wrlvl_ctl_3;
2296 debug("FSLDDR: wrlvl_cntl_3 = 0x%08x\n", ddr->ddr_wrlvl_cntl_3);
2297
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002298}
2299
2300/* DDR Self Refresh Counter (DDR_SR_CNTR) */
Dave Liu22cca7e2008-11-21 16:31:35 +08002301static void set_ddr_sr_cntr(fsl_ddr_cfg_regs_t *ddr, unsigned int sr_it)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002302{
Dave Liu22cca7e2008-11-21 16:31:35 +08002303 /* Self Refresh Idle Threshold */
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002304 ddr->ddr_sr_cntr = (sr_it & 0xF) << 16;
2305}
2306
york7fd101c2010-07-02 22:25:54 +00002307static void set_ddr_eor(fsl_ddr_cfg_regs_t *ddr, const memctl_options_t *popts)
2308{
2309 if (popts->addr_hash) {
2310 ddr->ddr_eor = 0x40000000; /* address hash enable */
Kumar Galac2a63f42011-03-18 11:53:06 -05002311 puts("Address hashing enabled.\n");
york7fd101c2010-07-02 22:25:54 +00002312 }
2313}
2314
York Sune1fd16b2011-01-10 12:03:00 +00002315static void set_ddr_cdr1(fsl_ddr_cfg_regs_t *ddr, const memctl_options_t *popts)
2316{
2317 ddr->ddr_cdr1 = popts->ddr_cdr1;
2318 debug("FSLDDR: ddr_cdr1 = 0x%08x\n", ddr->ddr_cdr1);
2319}
2320
York Sun57495e42012-10-08 07:44:22 +00002321static void set_ddr_cdr2(fsl_ddr_cfg_regs_t *ddr, const memctl_options_t *popts)
2322{
2323 ddr->ddr_cdr2 = popts->ddr_cdr2;
2324 debug("FSLDDR: ddr_cdr2 = 0x%08x\n", ddr->ddr_cdr2);
2325}
2326
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002327unsigned int
2328check_fsl_memctl_config_regs(const fsl_ddr_cfg_regs_t *ddr)
2329{
2330 unsigned int res = 0;
2331
2332 /*
2333 * Check that DDR_SDRAM_CFG[RD_EN] and DDR_SDRAM_CFG[2T_EN] are
2334 * not set at the same time.
2335 */
2336 if (ddr->ddr_sdram_cfg & 0x10000000
2337 && ddr->ddr_sdram_cfg & 0x00008000) {
2338 printf("Error: DDR_SDRAM_CFG[RD_EN] and DDR_SDRAM_CFG[2T_EN] "
2339 " should not be set at the same time.\n");
2340 res++;
2341 }
2342
2343 return res;
2344}
2345
2346unsigned int
York Sun03e664d2015-01-06 13:18:50 -08002347compute_fsl_memctl_config_regs(const unsigned int ctrl_num,
2348 const memctl_options_t *popts,
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002349 fsl_ddr_cfg_regs_t *ddr,
2350 const common_timing_params_t *common_dimm,
2351 const dimm_params_t *dimm_params,
Haiying Wangfc0c2b62010-12-01 10:35:31 -05002352 unsigned int dbw_cap_adj,
2353 unsigned int size_only)
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002354{
2355 unsigned int i;
2356 unsigned int cas_latency;
2357 unsigned int additive_latency;
Dave Liu22cca7e2008-11-21 16:31:35 +08002358 unsigned int sr_it;
Dave Liuc360cea2009-03-14 12:48:30 +08002359 unsigned int zq_en;
2360 unsigned int wrlvl_en;
York Sune1fd16b2011-01-10 12:03:00 +00002361 unsigned int ip_rev = 0;
2362 unsigned int unq_mrs_en = 0;
York Sun58edbc92010-10-18 13:46:50 -07002363 int cs_en = 1;
Shengzhou Liu02fb2762016-11-21 11:36:48 +08002364#ifdef CONFIG_SYS_FSL_ERRATUM_A009942
2365 unsigned int ddr_freq;
2366#endif
2367#if (defined(CONFIG_SYS_FSL_ERRATUM_A008378) && \
2368 defined(CONFIG_SYS_FSL_DDRC_GEN4)) || \
2369 defined(CONFIG_SYS_FSL_ERRATUM_A009942)
2370 struct ccsr_ddr __iomem *ddrc;
2371
2372 switch (ctrl_num) {
2373 case 0:
2374 ddrc = (void *)CONFIG_SYS_FSL_DDR_ADDR;
2375 break;
York Sun51370d52016-12-28 08:43:45 -08002376#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
Shengzhou Liu02fb2762016-11-21 11:36:48 +08002377 case 1:
2378 ddrc = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
2379 break;
2380#endif
York Sun51370d52016-12-28 08:43:45 -08002381#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
Shengzhou Liu02fb2762016-11-21 11:36:48 +08002382 case 2:
2383 ddrc = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
2384 break;
2385#endif
York Sun51370d52016-12-28 08:43:45 -08002386#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
Shengzhou Liu02fb2762016-11-21 11:36:48 +08002387 case 3:
2388 ddrc = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
2389 break;
2390#endif
2391 default:
2392 printf("%s unexpected ctrl_num = %u\n", __func__, ctrl_num);
2393 return 1;
2394 }
2395#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002396
2397 memset(ddr, 0, sizeof(fsl_ddr_cfg_regs_t));
2398
2399 if (common_dimm == NULL) {
2400 printf("Error: subset DIMM params struct null pointer\n");
2401 return 1;
2402 }
2403
2404 /*
2405 * Process overrides first.
2406 *
2407 * FIXME: somehow add dereated caslat to this
2408 */
2409 cas_latency = (popts->cas_latency_override)
2410 ? popts->cas_latency_override_value
York Sun34e026f2014-03-27 17:54:47 -07002411 : common_dimm->lowest_common_spd_caslat;
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002412
2413 additive_latency = (popts->additive_latency_override)
2414 ? popts->additive_latency_override_value
2415 : common_dimm->additive_latency;
2416
Dave Liu22cca7e2008-11-21 16:31:35 +08002417 sr_it = (popts->auto_self_refresh_en)
2418 ? popts->sr_it
2419 : 0;
Dave Liuc360cea2009-03-14 12:48:30 +08002420 /* ZQ calibration */
2421 zq_en = (popts->zq_en) ? 1 : 0;
2422 /* write leveling */
2423 wrlvl_en = (popts->wrlvl_en) ? 1 : 0;
Dave Liu22cca7e2008-11-21 16:31:35 +08002424
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002425 /* Chip Select Memory Bounds (CSn_BNDS) */
2426 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
York Suna4c66502012-08-17 08:22:39 +00002427 unsigned long long ea, sa;
york076bff82010-07-02 22:25:52 +00002428 unsigned int cs_per_dimm
2429 = CONFIG_CHIP_SELECTS_PER_CTRL / CONFIG_DIMM_SLOTS_PER_CTLR;
2430 unsigned int dimm_number
2431 = i / cs_per_dimm;
2432 unsigned long long rank_density
York Suna4c66502012-08-17 08:22:39 +00002433 = dimm_params[dimm_number].rank_density >> dbw_cap_adj;
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002434
york076bff82010-07-02 22:25:52 +00002435 if (dimm_params[dimm_number].n_ranks == 0) {
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002436 debug("Skipping setup of CS%u "
york5800e7a2010-07-02 22:25:53 +00002437 "because n_ranks on DIMM %u is 0\n", i, dimm_number);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002438 continue;
2439 }
York Suna4c66502012-08-17 08:22:39 +00002440 if (popts->memctl_interleaving) {
york076bff82010-07-02 22:25:52 +00002441 switch (popts->ba_intlv_ctl & FSL_DDR_CS0_CS1_CS2_CS3) {
York Suna4c66502012-08-17 08:22:39 +00002442 case FSL_DDR_CS0_CS1_CS2_CS3:
2443 break;
york076bff82010-07-02 22:25:52 +00002444 case FSL_DDR_CS0_CS1:
2445 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
York Sun58edbc92010-10-18 13:46:50 -07002446 if (i > 1)
2447 cs_en = 0;
york076bff82010-07-02 22:25:52 +00002448 break;
2449 case FSL_DDR_CS2_CS3:
York Suna4c66502012-08-17 08:22:39 +00002450 default:
York Sun58edbc92010-10-18 13:46:50 -07002451 if (i > 0)
2452 cs_en = 0;
york076bff82010-07-02 22:25:52 +00002453 break;
york076bff82010-07-02 22:25:52 +00002454 }
York Suna4c66502012-08-17 08:22:39 +00002455 sa = common_dimm->base_address;
York Sun123922b2012-10-08 07:44:23 +00002456 ea = sa + common_dimm->total_mem - 1;
York Suna4c66502012-08-17 08:22:39 +00002457 } else if (!popts->memctl_interleaving) {
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002458 /*
2459 * If memory interleaving between controllers is NOT
2460 * enabled, the starting address for each memory
2461 * controller is distinct. However, because rank
2462 * interleaving is enabled, the starting and ending
2463 * addresses of the total memory on that memory
2464 * controller needs to be programmed into its
2465 * respective CS0_BNDS.
2466 */
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002467 switch (popts->ba_intlv_ctl & FSL_DDR_CS0_CS1_CS2_CS3) {
2468 case FSL_DDR_CS0_CS1_CS2_CS3:
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002469 sa = common_dimm->base_address;
York Sun123922b2012-10-08 07:44:23 +00002470 ea = sa + common_dimm->total_mem - 1;
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002471 break;
2472 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
York Suna4c66502012-08-17 08:22:39 +00002473 if ((i >= 2) && (dimm_number == 0)) {
york076bff82010-07-02 22:25:52 +00002474 sa = dimm_params[dimm_number].base_address +
York Suna4c66502012-08-17 08:22:39 +00002475 2 * rank_density;
2476 ea = sa + 2 * rank_density - 1;
york076bff82010-07-02 22:25:52 +00002477 } else {
2478 sa = dimm_params[dimm_number].base_address;
York Suna4c66502012-08-17 08:22:39 +00002479 ea = sa + 2 * rank_density - 1;
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002480 }
2481 break;
2482 case FSL_DDR_CS0_CS1:
york076bff82010-07-02 22:25:52 +00002483 if (dimm_params[dimm_number].n_ranks > (i % cs_per_dimm)) {
2484 sa = dimm_params[dimm_number].base_address;
York Suna4c66502012-08-17 08:22:39 +00002485 ea = sa + rank_density - 1;
2486 if (i != 1)
2487 sa += (i % cs_per_dimm) * rank_density;
2488 ea += (i % cs_per_dimm) * rank_density;
york076bff82010-07-02 22:25:52 +00002489 } else {
2490 sa = 0;
2491 ea = 0;
2492 }
2493 if (i == 0)
York Suna4c66502012-08-17 08:22:39 +00002494 ea += rank_density;
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002495 break;
2496 case FSL_DDR_CS2_CS3:
york076bff82010-07-02 22:25:52 +00002497 if (dimm_params[dimm_number].n_ranks > (i % cs_per_dimm)) {
2498 sa = dimm_params[dimm_number].base_address;
York Suna4c66502012-08-17 08:22:39 +00002499 ea = sa + rank_density - 1;
2500 if (i != 3)
2501 sa += (i % cs_per_dimm) * rank_density;
2502 ea += (i % cs_per_dimm) * rank_density;
york076bff82010-07-02 22:25:52 +00002503 } else {
2504 sa = 0;
2505 ea = 0;
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002506 }
york076bff82010-07-02 22:25:52 +00002507 if (i == 2)
2508 ea += (rank_density >> dbw_cap_adj);
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002509 break;
2510 default: /* No bank(chip-select) interleaving */
York Suna4c66502012-08-17 08:22:39 +00002511 sa = dimm_params[dimm_number].base_address;
2512 ea = sa + rank_density - 1;
2513 if (dimm_params[dimm_number].n_ranks > (i % cs_per_dimm)) {
2514 sa += (i % cs_per_dimm) * rank_density;
2515 ea += (i % cs_per_dimm) * rank_density;
2516 } else {
2517 sa = 0;
2518 ea = 0;
2519 }
Haiying Wangdbbbb3a2008-10-03 12:36:39 -04002520 break;
2521 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002522 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002523
2524 sa >>= 24;
2525 ea >>= 24;
2526
York Sun123922b2012-10-08 07:44:23 +00002527 if (cs_en) {
2528 ddr->cs[i].bnds = (0
York Sund4263b82013-06-03 12:39:06 -07002529 | ((sa & 0xffff) << 16) /* starting address */
2530 | ((ea & 0xffff) << 0) /* ending address */
York Sun123922b2012-10-08 07:44:23 +00002531 );
2532 } else {
York Sund8556db2013-06-25 11:37:45 -07002533 /* setting bnds to 0xffffffff for inactive CS */
2534 ddr->cs[i].bnds = 0xffffffff;
York Sun123922b2012-10-08 07:44:23 +00002535 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002536
Haiying Wang1f293b42008-10-03 12:37:26 -04002537 debug("FSLDDR: cs[%d]_bnds = 0x%08x\n", i, ddr->cs[i].bnds);
York Sun123922b2012-10-08 07:44:23 +00002538 set_csn_config(dimm_number, i, ddr, popts, dimm_params);
2539 set_csn_config_2(i, ddr);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002540 }
2541
Haiying Wangfc0c2b62010-12-01 10:35:31 -05002542 /*
2543 * In the case we only need to compute the ddr sdram size, we only need
2544 * to set csn registers, so return from here.
2545 */
2546 if (size_only)
2547 return 0;
2548
york7fd101c2010-07-02 22:25:54 +00002549 set_ddr_eor(ddr, popts);
2550
York Sun5614e712013-09-30 09:22:09 -07002551#if !defined(CONFIG_SYS_FSL_DDR1)
York Sun03e664d2015-01-06 13:18:50 -08002552 set_timing_cfg_0(ctrl_num, ddr, popts, dimm_params);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002553#endif
2554
York Sun03e664d2015-01-06 13:18:50 -08002555 set_timing_cfg_3(ctrl_num, ddr, popts, common_dimm, cas_latency,
York Sund4263b82013-06-03 12:39:06 -07002556 additive_latency);
York Sun03e664d2015-01-06 13:18:50 -08002557 set_timing_cfg_1(ctrl_num, ddr, popts, common_dimm, cas_latency);
2558 set_timing_cfg_2(ctrl_num, ddr, popts, common_dimm,
2559 cas_latency, additive_latency);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002560
York Sune1fd16b2011-01-10 12:03:00 +00002561 set_ddr_cdr1(ddr, popts);
York Sun57495e42012-10-08 07:44:22 +00002562 set_ddr_cdr2(ddr, popts);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002563 set_ddr_sdram_cfg(ddr, popts, common_dimm);
York Sun66869f92015-03-19 09:30:26 -07002564 ip_rev = fsl_ddr_get_version(ctrl_num);
York Sune1fd16b2011-01-10 12:03:00 +00002565 if (ip_rev > 0x40400)
2566 unq_mrs_en = 1;
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002567
York Sunf80d6472014-09-11 13:32:06 -07002568 if ((ip_rev > 0x40700) && (popts->cswl_override != 0))
York Sunef87cab2014-09-05 13:52:43 +08002569 ddr->debug[18] = popts->cswl_override;
2570
York Sun03e664d2015-01-06 13:18:50 -08002571 set_ddr_sdram_cfg_2(ctrl_num, ddr, popts, unq_mrs_en);
2572 set_ddr_sdram_mode(ctrl_num, ddr, popts, common_dimm,
2573 cas_latency, additive_latency, unq_mrs_en);
2574 set_ddr_sdram_mode_2(ctrl_num, ddr, popts, common_dimm, unq_mrs_en);
York Sun34e026f2014-03-27 17:54:47 -07002575#ifdef CONFIG_SYS_FSL_DDR4
2576 set_ddr_sdram_mode_9(ddr, popts, common_dimm, unq_mrs_en);
York Sun03e664d2015-01-06 13:18:50 -08002577 set_ddr_sdram_mode_10(ctrl_num, ddr, popts, common_dimm, unq_mrs_en);
York Sun34e026f2014-03-27 17:54:47 -07002578#endif
York Sun564e9382018-01-29 10:24:08 -08002579 set_ddr_sdram_rcw(ctrl_num, ddr, popts, common_dimm);
2580
York Sun03e664d2015-01-06 13:18:50 -08002581 set_ddr_sdram_interval(ctrl_num, ddr, popts, common_dimm);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002582 set_ddr_data_init(ddr);
2583 set_ddr_sdram_clk_cntl(ddr, popts);
2584 set_ddr_init_addr(ddr);
2585 set_ddr_init_ext_addr(ddr);
Dave Liuec145e82010-03-05 12:22:00 +08002586 set_timing_cfg_4(ddr, popts);
York Sune1fd16b2011-01-10 12:03:00 +00002587 set_timing_cfg_5(ddr, cas_latency);
York Sun34e026f2014-03-27 17:54:47 -07002588#ifdef CONFIG_SYS_FSL_DDR4
2589 set_ddr_sdram_cfg_3(ddr, popts);
2590 set_timing_cfg_6(ddr);
York Sun426230a2018-01-29 09:44:33 -08002591 set_timing_cfg_7(ctrl_num, ddr, popts, common_dimm);
York Sun03e664d2015-01-06 13:18:50 -08002592 set_timing_cfg_8(ctrl_num, ddr, popts, common_dimm, cas_latency);
York Sunc0c32af2018-01-29 09:44:35 -08002593 set_timing_cfg_9(ctrl_num, ddr, popts, common_dimm);
York Sun34e026f2014-03-27 17:54:47 -07002594 set_ddr_dq_mapping(ddr, dimm_params);
2595#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002596
Dave Liuc360cea2009-03-14 12:48:30 +08002597 set_ddr_zq_cntl(ddr, zq_en);
Dave Liubdc9f7b2009-12-16 10:24:37 -06002598 set_ddr_wrlvl_cntl(ddr, wrlvl_en, popts);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002599
Dave Liu22cca7e2008-11-21 16:31:35 +08002600 set_ddr_sr_cntr(ddr, sr_it);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002601
York Suncb930712013-06-25 11:37:41 -07002602#ifdef CONFIG_SYS_FSL_DDR_EMU
2603 /* disble DDR training for emulator */
2604 ddr->debug[2] = 0x00000400;
York Sun1f3402e2015-01-06 13:18:45 -08002605 ddr->debug[4] = 0xff800800;
2606 ddr->debug[5] = 0x08000800;
2607 ddr->debug[6] = 0x08000800;
2608 ddr->debug[7] = 0x08000800;
2609 ddr->debug[8] = 0x08000800;
York Suncb930712013-06-25 11:37:41 -07002610#endif
York Sun9855b3b2014-05-23 13:15:00 -07002611#ifdef CONFIG_SYS_FSL_ERRATUM_A004508
2612 if ((ip_rev >= 0x40000) && (ip_rev < 0x40400))
2613 ddr->debug[2] |= 0x00000200; /* set bit 22 */
2614#endif
2615
Shengzhou Liu02fb2762016-11-21 11:36:48 +08002616#if defined(CONFIG_SYS_FSL_ERRATUM_A008378) && defined(CONFIG_SYS_FSL_DDRC_GEN4)
2617 /* Erratum applies when accumulated ECC is used, or DBI is enabled */
2618#define IS_ACC_ECC_EN(v) ((v) & 0x4)
2619#define IS_DBI(v) ((((v) >> 12) & 0x3) == 0x2)
2620 if (has_erratum_a008378()) {
2621 if (IS_ACC_ECC_EN(ddr->ddr_sdram_cfg) ||
2622 IS_DBI(ddr->ddr_sdram_cfg_3)) {
2623 ddr->debug[28] = ddr_in32(&ddrc->debug[28]);
2624 ddr->debug[28] |= (0x9 << 20);
2625 }
2626 }
2627#endif
2628
2629#ifdef CONFIG_SYS_FSL_ERRATUM_A009942
2630 ddr_freq = get_ddr_freq(ctrl_num) / 1000000;
2631 ddr->debug[28] |= ddr_in32(&ddrc->debug[28]);
2632 ddr->debug[28] &= 0xff0fff00;
2633 if (ddr_freq <= 1333)
2634 ddr->debug[28] |= 0x0080006a;
2635 else if (ddr_freq <= 1600)
2636 ddr->debug[28] |= 0x0070006f;
2637 else if (ddr_freq <= 1867)
2638 ddr->debug[28] |= 0x00700076;
2639 else if (ddr_freq <= 2133)
2640 ddr->debug[28] |= 0x0060007b;
2641 if (popts->cpo_sample)
2642 ddr->debug[28] = (ddr->debug[28] & 0xffffff00) |
2643 popts->cpo_sample;
2644#endif
2645
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002646 return check_fsl_memctl_config_regs(ddr);
2647}
Shengzhou Liu02fb2762016-11-21 11:36:48 +08002648
2649#ifdef CONFIG_SYS_FSL_ERRATUM_A009942
2650/*
2651 * This additional workaround of A009942 checks the condition to determine if
2652 * the CPO value set by the existing A009942 workaround needs to be updated.
2653 * If need, print a warning to prompt user reconfigure DDR debug_29[24:31] with
2654 * expected optimal value, the optimal value is highly board dependent.
2655 */
2656void erratum_a009942_check_cpo(void)
2657{
2658 struct ccsr_ddr __iomem *ddr =
2659 (struct ccsr_ddr __iomem *)(CONFIG_SYS_FSL_DDR_ADDR);
2660 u32 cpo, cpo_e, cpo_o, cpo_target, cpo_optimal;
2661 u32 cpo_min = ddr_in32(&ddr->debug[9]) >> 24;
2662 u32 cpo_max = cpo_min;
2663 u32 sdram_cfg, i, tmp, lanes, ddr_type;
2664 bool update_cpo = false, has_ecc = false;
2665
2666 sdram_cfg = ddr_in32(&ddr->sdram_cfg);
2667 if (sdram_cfg & SDRAM_CFG_32_BE)
2668 lanes = 4;
2669 else if (sdram_cfg & SDRAM_CFG_16_BE)
2670 lanes = 2;
2671 else
2672 lanes = 8;
2673
2674 if (sdram_cfg & SDRAM_CFG_ECC_EN)
2675 has_ecc = true;
2676
2677 /* determine the maximum and minimum CPO values */
2678 for (i = 9; i < 9 + lanes / 2; i++) {
2679 cpo = ddr_in32(&ddr->debug[i]);
2680 cpo_e = cpo >> 24;
2681 cpo_o = (cpo >> 8) & 0xff;
2682 tmp = min(cpo_e, cpo_o);
2683 if (tmp < cpo_min)
2684 cpo_min = tmp;
2685 tmp = max(cpo_e, cpo_o);
2686 if (tmp > cpo_max)
2687 cpo_max = tmp;
2688 }
2689
2690 if (has_ecc) {
2691 cpo = ddr_in32(&ddr->debug[13]);
2692 cpo = cpo >> 24;
2693 if (cpo < cpo_min)
2694 cpo_min = cpo;
2695 if (cpo > cpo_max)
2696 cpo_max = cpo;
2697 }
2698
2699 cpo_target = ddr_in32(&ddr->debug[28]) & 0xff;
2700 cpo_optimal = ((cpo_max + cpo_min) >> 1) + 0x27;
2701 debug("cpo_optimal = 0x%x, cpo_target = 0x%x\n", cpo_optimal,
2702 cpo_target);
2703 debug("cpo_max = 0x%x, cpo_min = 0x%x\n", cpo_max, cpo_min);
2704
2705 ddr_type = (sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK) >>
2706 SDRAM_CFG_SDRAM_TYPE_SHIFT;
2707 if (ddr_type == SDRAM_TYPE_DDR4)
2708 update_cpo = (cpo_min + 0x3b) < cpo_target ? true : false;
2709 else if (ddr_type == SDRAM_TYPE_DDR3)
2710 update_cpo = (cpo_min + 0x3f) < cpo_target ? true : false;
2711
2712 if (update_cpo) {
2713 printf("WARN: pls set popts->cpo_sample = 0x%x ", cpo_optimal);
2714 printf("in <board>/ddr.c to optimize cpo\n");
2715 }
2716}
2717#endif