blob: 8ef6ca8c1c03e44067fedba2b9f12d079376b1fe [file] [log] [blame]
Kumar Gala124b0822008-08-26 15:01:29 -05001/*
York Sunba0c2eb2011-01-10 12:03:00 +00002 * Copyright 2008-2011 Freescale Semiconductor, Inc.
Kumar Gala124b0822008-08-26 15:01:29 -05003 *
Dave Liu3525e1a2010-03-05 12:22:00 +08004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
Kumar Gala124b0822008-08-26 15:01:29 -05008 */
9
10/*
11 * Generic driver for Freescale DDR/DDR2/DDR3 memory controller.
12 * Based on code from spd_sdram.c
13 * Author: James Yang [at freescale.com]
14 */
15
16#include <common.h>
17#include <asm/fsl_ddr_sdram.h>
18
19#include "ddr.h"
20
York Sunba0c2eb2011-01-10 12:03:00 +000021#ifdef CONFIG_MPC85xx
22 #define _DDR_ADDR CONFIG_SYS_MPC85xx_DDR_ADDR
23#elif defined(CONFIG_MPC86xx)
24 #define _DDR_ADDR CONFIG_SYS_MPC86xx_DDR_ADDR
25#else
26 #error "Undefined _DDR_ADDR"
27#endif
28
29u32 fsl_ddr_get_version(void)
30{
31 ccsr_ddr_t *ddr;
32 u32 ver_major_minor_errata;
33
34 ddr = (void *)_DDR_ADDR;
35 ver_major_minor_errata = (in_be32(&ddr->ip_rev1) & 0xFFFF) << 8;
36 ver_major_minor_errata |= (in_be32(&ddr->ip_rev2) & 0xFF00) >> 8;
37
38 return ver_major_minor_errata;
39}
40
41unsigned int picos_to_mclk(unsigned int picos);
42
Kumar Gala124b0822008-08-26 15:01:29 -050043/*
44 * Determine Rtt value.
45 *
46 * This should likely be either board or controller specific.
47 *
Dave Liu4be87b22009-03-14 12:48:30 +080048 * Rtt(nominal) - DDR2:
Kumar Gala124b0822008-08-26 15:01:29 -050049 * 0 = Rtt disabled
50 * 1 = 75 ohm
51 * 2 = 150 ohm
52 * 3 = 50 ohm
Dave Liu4be87b22009-03-14 12:48:30 +080053 * Rtt(nominal) - DDR3:
54 * 0 = Rtt disabled
55 * 1 = 60 ohm
56 * 2 = 120 ohm
57 * 3 = 40 ohm
58 * 4 = 20 ohm
59 * 5 = 30 ohm
Kumar Gala124b0822008-08-26 15:01:29 -050060 *
61 * FIXME: Apparently 8641 needs a value of 2
62 * FIXME: Old code seys if 667 MHz or higher, use 3 on 8572
63 *
64 * FIXME: There was some effort down this line earlier:
65 *
66 * unsigned int i;
67 * for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL/2; i++) {
68 * if (popts->dimmslot[i].num_valid_cs
69 * && (popts->cs_local_opts[2*i].odt_rd_cfg
70 * || popts->cs_local_opts[2*i].odt_wr_cfg)) {
71 * rtt = 2;
72 * break;
73 * }
74 * }
75 */
76static inline int fsl_ddr_get_rtt(void)
77{
78 int rtt;
79
80#if defined(CONFIG_FSL_DDR1)
81 rtt = 0;
82#elif defined(CONFIG_FSL_DDR2)
83 rtt = 3;
84#else
Dave Liu4be87b22009-03-14 12:48:30 +080085 rtt = 0;
Kumar Gala124b0822008-08-26 15:01:29 -050086#endif
87
88 return rtt;
89}
90
Dave Liu4be87b22009-03-14 12:48:30 +080091/*
92 * compute the CAS write latency according to DDR3 spec
93 * CWL = 5 if tCK >= 2.5ns
94 * 6 if 2.5ns > tCK >= 1.875ns
95 * 7 if 1.875ns > tCK >= 1.5ns
96 * 8 if 1.5ns > tCK >= 1.25ns
97 */
98static inline unsigned int compute_cas_write_latency(void)
99{
100 unsigned int cwl;
101 const unsigned int mclk_ps = get_memory_clk_period_ps();
102
103 if (mclk_ps >= 2500)
104 cwl = 5;
105 else if (mclk_ps >= 1875)
106 cwl = 6;
107 else if (mclk_ps >= 1500)
108 cwl = 7;
109 else if (mclk_ps >= 1250)
110 cwl = 8;
111 else
112 cwl = 8;
113 return cwl;
114}
115
Kumar Gala124b0822008-08-26 15:01:29 -0500116/* Chip Select Configuration (CSn_CONFIG) */
yorkf4f93c62010-07-02 22:25:53 +0000117static void set_csn_config(int dimm_number, int i, fsl_ddr_cfg_regs_t *ddr,
Kumar Gala124b0822008-08-26 15:01:29 -0500118 const memctl_options_t *popts,
119 const dimm_params_t *dimm_params)
120{
121 unsigned int cs_n_en = 0; /* Chip Select enable */
122 unsigned int intlv_en = 0; /* Memory controller interleave enable */
123 unsigned int intlv_ctl = 0; /* Interleaving control */
124 unsigned int ap_n_en = 0; /* Chip select n auto-precharge enable */
125 unsigned int odt_rd_cfg = 0; /* ODT for reads configuration */
126 unsigned int odt_wr_cfg = 0; /* ODT for writes configuration */
127 unsigned int ba_bits_cs_n = 0; /* Num of bank bits for SDRAM on CSn */
128 unsigned int row_bits_cs_n = 0; /* Num of row bits for SDRAM on CSn */
129 unsigned int col_bits_cs_n = 0; /* Num of ocl bits for SDRAM on CSn */
yorkf4f93c62010-07-02 22:25:53 +0000130 int go_config = 0;
Kumar Gala124b0822008-08-26 15:01:29 -0500131
132 /* Compute CS_CONFIG only for existing ranks of each DIMM. */
yorkf4f93c62010-07-02 22:25:53 +0000133 switch (i) {
134 case 0:
135 if (dimm_params[dimm_number].n_ranks > 0) {
136 go_config = 1;
Kumar Gala124b0822008-08-26 15:01:29 -0500137 /* These fields only available in CS0_CONFIG */
138 intlv_en = popts->memctl_interleaving;
139 intlv_ctl = popts->memctl_interleaving_mode;
140 }
yorkf4f93c62010-07-02 22:25:53 +0000141 break;
142 case 1:
143 if ((dimm_number == 0 && dimm_params[0].n_ranks > 1) || \
144 (dimm_number == 1 && dimm_params[1].n_ranks > 0))
145 go_config = 1;
146 break;
147 case 2:
148 if ((dimm_number == 0 && dimm_params[0].n_ranks > 2) || \
149 (dimm_number > 1 && dimm_params[dimm_number].n_ranks > 0))
150 go_config = 1;
151 break;
152 case 3:
153 if ((dimm_number == 0 && dimm_params[0].n_ranks > 3) || \
154 (dimm_number == 1 && dimm_params[1].n_ranks > 1) || \
155 (dimm_number == 3 && dimm_params[3].n_ranks > 0))
156 go_config = 1;
157 break;
158 default:
159 break;
160 }
161 if (go_config) {
162 unsigned int n_banks_per_sdram_device;
163 cs_n_en = 1;
Kumar Gala124b0822008-08-26 15:01:29 -0500164 ap_n_en = popts->cs_local_opts[i].auto_precharge;
165 odt_rd_cfg = popts->cs_local_opts[i].odt_rd_cfg;
166 odt_wr_cfg = popts->cs_local_opts[i].odt_wr_cfg;
167 n_banks_per_sdram_device
yorkf4f93c62010-07-02 22:25:53 +0000168 = dimm_params[dimm_number].n_banks_per_sdram_device;
Kumar Gala124b0822008-08-26 15:01:29 -0500169 ba_bits_cs_n = __ilog2(n_banks_per_sdram_device) - 2;
yorkf4f93c62010-07-02 22:25:53 +0000170 row_bits_cs_n = dimm_params[dimm_number].n_row_addr - 12;
171 col_bits_cs_n = dimm_params[dimm_number].n_col_addr - 8;
Kumar Gala124b0822008-08-26 15:01:29 -0500172 }
Kumar Gala124b0822008-08-26 15:01:29 -0500173 ddr->cs[i].config = (0
174 | ((cs_n_en & 0x1) << 31)
175 | ((intlv_en & 0x3) << 29)
Haiying Wang272b5962008-10-03 12:36:39 -0400176 | ((intlv_ctl & 0xf) << 24)
Kumar Gala124b0822008-08-26 15:01:29 -0500177 | ((ap_n_en & 0x1) << 23)
178
179 /* XXX: some implementation only have 1 bit starting at left */
180 | ((odt_rd_cfg & 0x7) << 20)
181
182 /* XXX: Some implementation only have 1 bit starting at left */
183 | ((odt_wr_cfg & 0x7) << 16)
184
185 | ((ba_bits_cs_n & 0x3) << 14)
186 | ((row_bits_cs_n & 0x7) << 8)
187 | ((col_bits_cs_n & 0x7) << 0)
188 );
Haiying Wangd90e0402008-10-03 12:37:26 -0400189 debug("FSLDDR: cs[%d]_config = 0x%08x\n", i,ddr->cs[i].config);
Kumar Gala124b0822008-08-26 15:01:29 -0500190}
191
192/* Chip Select Configuration 2 (CSn_CONFIG_2) */
193/* FIXME: 8572 */
194static void set_csn_config_2(int i, fsl_ddr_cfg_regs_t *ddr)
195{
196 unsigned int pasr_cfg = 0; /* Partial array self refresh config */
197
198 ddr->cs[i].config_2 = ((pasr_cfg & 7) << 24);
Haiying Wangd90e0402008-10-03 12:37:26 -0400199 debug("FSLDDR: cs[%d]_config_2 = 0x%08x\n", i, ddr->cs[i].config_2);
Kumar Gala124b0822008-08-26 15:01:29 -0500200}
201
202/* -3E = 667 CL5, -25 = CL6 800, -25E = CL5 800 */
203
Dave Liu4be87b22009-03-14 12:48:30 +0800204#if !defined(CONFIG_FSL_DDR1)
Kumar Gala124b0822008-08-26 15:01:29 -0500205/*
206 * DDR SDRAM Timing Configuration 0 (TIMING_CFG_0)
207 *
208 * Avoid writing for DDR I. The new PQ38 DDR controller
209 * dreams up non-zero default values to be backwards compatible.
210 */
York Sunba0c2eb2011-01-10 12:03:00 +0000211static void set_timing_cfg_0(fsl_ddr_cfg_regs_t *ddr,
212 const memctl_options_t *popts)
Kumar Gala124b0822008-08-26 15:01:29 -0500213{
214 unsigned char trwt_mclk = 0; /* Read-to-write turnaround */
215 unsigned char twrt_mclk = 0; /* Write-to-read turnaround */
216 /* 7.5 ns on -3E; 0 means WL - CL + BL/2 + 1 */
217 unsigned char trrt_mclk = 0; /* Read-to-read turnaround */
218 unsigned char twwt_mclk = 0; /* Write-to-write turnaround */
219
220 /* Active powerdown exit timing (tXARD and tXARDS). */
221 unsigned char act_pd_exit_mclk;
222 /* Precharge powerdown exit timing (tXP). */
223 unsigned char pre_pd_exit_mclk;
york1714e492010-07-02 22:25:56 +0000224 /* ODT powerdown exit timing (tAXPD). */
Kumar Gala124b0822008-08-26 15:01:29 -0500225 unsigned char taxpd_mclk;
226 /* Mode register set cycle time (tMRD). */
227 unsigned char tmrd_mclk;
228
York Sunba0c2eb2011-01-10 12:03:00 +0000229#ifdef CONFIG_FSL_DDR3
Dave Liu4be87b22009-03-14 12:48:30 +0800230 /*
231 * (tXARD and tXARDS). Empirical?
232 * The DDR3 spec has not tXARD,
233 * we use the tXP instead of it.
234 * tXP=max(3nCK, 7.5ns) for DDR3.
Dave Liu4be87b22009-03-14 12:48:30 +0800235 * spec has not the tAXPD, we use
york1714e492010-07-02 22:25:56 +0000236 * tAXPD=1, need design to confirm.
Dave Liu4be87b22009-03-14 12:48:30 +0800237 */
Dave Liuc7d983a2009-12-16 10:24:36 -0600238 int tXP = max((get_memory_clk_period_ps() * 3), 7500); /* unit=ps */
York Sun27f83be2011-02-10 10:13:10 -0800239 unsigned int data_rate = fsl_ddr_get_mem_data_rate();
Dave Liu4be87b22009-03-14 12:48:30 +0800240 tmrd_mclk = 4;
Dave Liu81079262009-12-08 11:56:48 +0800241 /* set the turnaround time */
242 trwt_mclk = 1;
York Sun27f83be2011-02-10 10:13:10 -0800243 if ((data_rate/1000000 > 1150) || (popts->memctl_interleaving))
244 twrt_mclk = 1;
York Sunba0c2eb2011-01-10 12:03:00 +0000245
246 if (popts->dynamic_power == 0) { /* powerdown is not used */
247 act_pd_exit_mclk = 1;
248 pre_pd_exit_mclk = 1;
249 taxpd_mclk = 1;
250 } else {
251 /* act_pd_exit_mclk = tXARD, see above */
252 act_pd_exit_mclk = picos_to_mclk(tXP);
253 /* Mode register MR0[A12] is '1' - fast exit */
254 pre_pd_exit_mclk = act_pd_exit_mclk;
255 taxpd_mclk = 1;
256 }
Dave Liu4be87b22009-03-14 12:48:30 +0800257#else /* CONFIG_FSL_DDR2 */
258 /*
259 * (tXARD and tXARDS). Empirical?
260 * tXARD = 2 for DDR2
261 * tXP=2
262 * tAXPD=8
263 */
264 act_pd_exit_mclk = 2;
265 pre_pd_exit_mclk = 2;
266 taxpd_mclk = 8;
Kumar Gala124b0822008-08-26 15:01:29 -0500267 tmrd_mclk = 2;
Dave Liu4be87b22009-03-14 12:48:30 +0800268#endif
Kumar Gala124b0822008-08-26 15:01:29 -0500269
270 ddr->timing_cfg_0 = (0
271 | ((trwt_mclk & 0x3) << 30) /* RWT */
272 | ((twrt_mclk & 0x3) << 28) /* WRT */
273 | ((trrt_mclk & 0x3) << 26) /* RRT */
274 | ((twwt_mclk & 0x3) << 24) /* WWT */
275 | ((act_pd_exit_mclk & 0x7) << 20) /* ACT_PD_EXIT */
Dave Liu4758d532008-11-21 16:31:29 +0800276 | ((pre_pd_exit_mclk & 0xF) << 16) /* PRE_PD_EXIT */
Kumar Gala124b0822008-08-26 15:01:29 -0500277 | ((taxpd_mclk & 0xf) << 8) /* ODT_PD_EXIT */
278 | ((tmrd_mclk & 0xf) << 0) /* MRS_CYC */
279 );
280 debug("FSLDDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0);
281}
282#endif /* defined(CONFIG_FSL_DDR2) */
283
284/* DDR SDRAM Timing Configuration 3 (TIMING_CFG_3) */
285static void set_timing_cfg_3(fsl_ddr_cfg_regs_t *ddr,
Dave Liu4be87b22009-03-14 12:48:30 +0800286 const common_timing_params_t *common_dimm,
287 unsigned int cas_latency)
Kumar Gala124b0822008-08-26 15:01:29 -0500288{
289 /* Extended Activate to precharge interval (tRAS) */
290 unsigned int ext_acttopre = 0;
291 unsigned int ext_refrec; /* Extended refresh recovery time (tRFC) */
292 unsigned int ext_caslat = 0; /* Extended MCAS latency from READ cmd */
293 unsigned int cntl_adj = 0; /* Control Adjust */
294
Dave Liu5c1bb512008-11-21 16:31:22 +0800295 /* If the tRAS > 19 MCLK, we use the ext mode */
296 if (picos_to_mclk(common_dimm->tRAS_ps) > 0x13)
297 ext_acttopre = 1;
298
Kumar Gala124b0822008-08-26 15:01:29 -0500299 ext_refrec = (picos_to_mclk(common_dimm->tRFC_ps) - 8) >> 4;
Dave Liu4be87b22009-03-14 12:48:30 +0800300
301 /* If the CAS latency more than 8, use the ext mode */
302 if (cas_latency > 8)
303 ext_caslat = 1;
304
Kumar Gala124b0822008-08-26 15:01:29 -0500305 ddr->timing_cfg_3 = (0
306 | ((ext_acttopre & 0x1) << 24)
Dave Liu5c1bb512008-11-21 16:31:22 +0800307 | ((ext_refrec & 0xF) << 16)
Kumar Gala124b0822008-08-26 15:01:29 -0500308 | ((ext_caslat & 0x1) << 12)
309 | ((cntl_adj & 0x7) << 0)
310 );
Haiying Wangd90e0402008-10-03 12:37:26 -0400311 debug("FSLDDR: timing_cfg_3 = 0x%08x\n", ddr->timing_cfg_3);
Kumar Gala124b0822008-08-26 15:01:29 -0500312}
313
314/* DDR SDRAM Timing Configuration 1 (TIMING_CFG_1) */
315static void set_timing_cfg_1(fsl_ddr_cfg_regs_t *ddr,
Dave Liu4be87b22009-03-14 12:48:30 +0800316 const memctl_options_t *popts,
Kumar Gala124b0822008-08-26 15:01:29 -0500317 const common_timing_params_t *common_dimm,
318 unsigned int cas_latency)
319{
320 /* Precharge-to-activate interval (tRP) */
321 unsigned char pretoact_mclk;
322 /* Activate to precharge interval (tRAS) */
323 unsigned char acttopre_mclk;
324 /* Activate to read/write interval (tRCD) */
325 unsigned char acttorw_mclk;
326 /* CASLAT */
327 unsigned char caslat_ctrl;
328 /* Refresh recovery time (tRFC) ; trfc_low */
329 unsigned char refrec_ctrl;
330 /* Last data to precharge minimum interval (tWR) */
331 unsigned char wrrec_mclk;
332 /* Activate-to-activate interval (tRRD) */
333 unsigned char acttoact_mclk;
334 /* Last write data pair to read command issue interval (tWTR) */
335 unsigned char wrtord_mclk;
York Sun3673f2c2011-03-02 14:24:11 -0800336 /* DDR_SDRAM_MODE doesn't support 9,11,13,15 */
337 static const u8 wrrec_table[] = {
338 1, 2, 3, 4, 5, 6, 7, 8, 10, 10, 12, 12, 14, 14, 0, 0};
Kumar Gala124b0822008-08-26 15:01:29 -0500339
340 pretoact_mclk = picos_to_mclk(common_dimm->tRP_ps);
341 acttopre_mclk = picos_to_mclk(common_dimm->tRAS_ps);
342 acttorw_mclk = picos_to_mclk(common_dimm->tRCD_ps);
343
344 /*
345 * Translate CAS Latency to a DDR controller field value:
346 *
347 * CAS Lat DDR I DDR II Ctrl
348 * Clocks SPD Bit SPD Bit Value
349 * ------- ------- ------- -----
350 * 1.0 0 0001
351 * 1.5 1 0010
352 * 2.0 2 2 0011
353 * 2.5 3 0100
354 * 3.0 4 3 0101
355 * 3.5 5 0110
356 * 4.0 4 0111
357 * 4.5 1000
358 * 5.0 5 1001
359 */
360#if defined(CONFIG_FSL_DDR1)
361 caslat_ctrl = (cas_latency + 1) & 0x07;
362#elif defined(CONFIG_FSL_DDR2)
363 caslat_ctrl = 2 * cas_latency - 1;
364#else
Dave Liu4be87b22009-03-14 12:48:30 +0800365 /*
366 * if the CAS latency more than 8 cycle,
367 * we need set extend bit for it at
368 * TIMING_CFG_3[EXT_CASLAT]
369 */
370 if (cas_latency > 8)
371 cas_latency -= 8;
372 caslat_ctrl = 2 * cas_latency - 1;
Kumar Gala124b0822008-08-26 15:01:29 -0500373#endif
374
375 refrec_ctrl = picos_to_mclk(common_dimm->tRFC_ps) - 8;
376 wrrec_mclk = picos_to_mclk(common_dimm->tWR_ps);
York Sun3673f2c2011-03-02 14:24:11 -0800377
378 wrrec_mclk = wrrec_table[wrrec_mclk - 1];
Dave Liu4be87b22009-03-14 12:48:30 +0800379 if (popts->OTF_burst_chop_en)
380 wrrec_mclk += 2;
381
Kumar Gala124b0822008-08-26 15:01:29 -0500382 acttoact_mclk = picos_to_mclk(common_dimm->tRRD_ps);
Dave Liu4be87b22009-03-14 12:48:30 +0800383 /*
384 * JEDEC has min requirement for tRRD
385 */
386#if defined(CONFIG_FSL_DDR3)
387 if (acttoact_mclk < 4)
388 acttoact_mclk = 4;
389#endif
Kumar Gala124b0822008-08-26 15:01:29 -0500390 wrtord_mclk = picos_to_mclk(common_dimm->tWTR_ps);
Dave Liu4be87b22009-03-14 12:48:30 +0800391 /*
392 * JEDEC has some min requirements for tWTR
393 */
394#if defined(CONFIG_FSL_DDR2)
395 if (wrtord_mclk < 2)
396 wrtord_mclk = 2;
397#elif defined(CONFIG_FSL_DDR3)
398 if (wrtord_mclk < 4)
399 wrtord_mclk = 4;
400#endif
401 if (popts->OTF_burst_chop_en)
402 wrtord_mclk += 2;
Kumar Gala124b0822008-08-26 15:01:29 -0500403
404 ddr->timing_cfg_1 = (0
Dave Liu5c1bb512008-11-21 16:31:22 +0800405 | ((pretoact_mclk & 0x0F) << 28)
Kumar Gala124b0822008-08-26 15:01:29 -0500406 | ((acttopre_mclk & 0x0F) << 24)
Dave Liu5c1bb512008-11-21 16:31:22 +0800407 | ((acttorw_mclk & 0xF) << 20)
Kumar Gala124b0822008-08-26 15:01:29 -0500408 | ((caslat_ctrl & 0xF) << 16)
409 | ((refrec_ctrl & 0xF) << 12)
Dave Liu5c1bb512008-11-21 16:31:22 +0800410 | ((wrrec_mclk & 0x0F) << 8)
Kumar Gala124b0822008-08-26 15:01:29 -0500411 | ((acttoact_mclk & 0x07) << 4)
412 | ((wrtord_mclk & 0x07) << 0)
413 );
Haiying Wangd90e0402008-10-03 12:37:26 -0400414 debug("FSLDDR: timing_cfg_1 = 0x%08x\n", ddr->timing_cfg_1);
Kumar Gala124b0822008-08-26 15:01:29 -0500415}
416
417/* DDR SDRAM Timing Configuration 2 (TIMING_CFG_2) */
418static void set_timing_cfg_2(fsl_ddr_cfg_regs_t *ddr,
419 const memctl_options_t *popts,
420 const common_timing_params_t *common_dimm,
421 unsigned int cas_latency,
422 unsigned int additive_latency)
423{
424 /* Additive latency */
425 unsigned char add_lat_mclk;
426 /* CAS-to-preamble override */
427 unsigned short cpo;
428 /* Write latency */
429 unsigned char wr_lat;
430 /* Read to precharge (tRTP) */
431 unsigned char rd_to_pre;
432 /* Write command to write data strobe timing adjustment */
433 unsigned char wr_data_delay;
434 /* Minimum CKE pulse width (tCKE) */
435 unsigned char cke_pls;
436 /* Window for four activates (tFAW) */
437 unsigned short four_act;
438
439 /* FIXME add check that this must be less than acttorw_mclk */
440 add_lat_mclk = additive_latency;
441 cpo = popts->cpo_override;
442
443#if defined(CONFIG_FSL_DDR1)
444 /*
445 * This is a lie. It should really be 1, but if it is
446 * set to 1, bits overlap into the old controller's
447 * otherwise unused ACSM field. If we leave it 0, then
448 * the HW will magically treat it as 1 for DDR 1. Oh Yea.
449 */
450 wr_lat = 0;
451#elif defined(CONFIG_FSL_DDR2)
Dave Liu82aa9532009-03-14 12:48:19 +0800452 wr_lat = cas_latency - 1;
Kumar Gala124b0822008-08-26 15:01:29 -0500453#else
Dave Liu4be87b22009-03-14 12:48:30 +0800454 wr_lat = compute_cas_write_latency();
Kumar Gala124b0822008-08-26 15:01:29 -0500455#endif
456
457 rd_to_pre = picos_to_mclk(common_dimm->tRTP_ps);
Dave Liu4be87b22009-03-14 12:48:30 +0800458 /*
459 * JEDEC has some min requirements for tRTP
460 */
Dave Liu82aa9532009-03-14 12:48:19 +0800461#if defined(CONFIG_FSL_DDR2)
Dave Liu4be87b22009-03-14 12:48:30 +0800462 if (rd_to_pre < 2)
463 rd_to_pre = 2;
464#elif defined(CONFIG_FSL_DDR3)
465 if (rd_to_pre < 4)
466 rd_to_pre = 4;
Dave Liu82aa9532009-03-14 12:48:19 +0800467#endif
Dave Liu4be87b22009-03-14 12:48:30 +0800468 if (additive_latency)
469 rd_to_pre += additive_latency;
470 if (popts->OTF_burst_chop_en)
471 rd_to_pre += 2; /* according to UM */
472
Kumar Gala124b0822008-08-26 15:01:29 -0500473 wr_data_delay = popts->write_data_delay;
474 cke_pls = picos_to_mclk(popts->tCKE_clock_pulse_width_ps);
475 four_act = picos_to_mclk(popts->tFAW_window_four_activates_ps);
476
477 ddr->timing_cfg_2 = (0
Dave Liu4758d532008-11-21 16:31:29 +0800478 | ((add_lat_mclk & 0xf) << 28)
Kumar Gala124b0822008-08-26 15:01:29 -0500479 | ((cpo & 0x1f) << 23)
Dave Liu4758d532008-11-21 16:31:29 +0800480 | ((wr_lat & 0xf) << 19)
Dave Liu4be87b22009-03-14 12:48:30 +0800481 | ((rd_to_pre & RD_TO_PRE_MASK) << RD_TO_PRE_SHIFT)
482 | ((wr_data_delay & WR_DATA_DELAY_MASK) << WR_DATA_DELAY_SHIFT)
Kumar Gala124b0822008-08-26 15:01:29 -0500483 | ((cke_pls & 0x7) << 6)
Dave Liu4758d532008-11-21 16:31:29 +0800484 | ((four_act & 0x3f) << 0)
Kumar Gala124b0822008-08-26 15:01:29 -0500485 );
Haiying Wangd90e0402008-10-03 12:37:26 -0400486 debug("FSLDDR: timing_cfg_2 = 0x%08x\n", ddr->timing_cfg_2);
Kumar Gala124b0822008-08-26 15:01:29 -0500487}
488
yorkde879322010-07-02 22:25:55 +0000489/* DDR SDRAM Register Control Word */
490static void set_ddr_sdram_rcw(fsl_ddr_cfg_regs_t *ddr,
York Sunba0c2eb2011-01-10 12:03:00 +0000491 const memctl_options_t *popts,
yorkde879322010-07-02 22:25:55 +0000492 const common_timing_params_t *common_dimm)
493{
494 if (common_dimm->all_DIMMs_registered
495 && !common_dimm->all_DIMMs_unbuffered) {
York Sunba0c2eb2011-01-10 12:03:00 +0000496 if (popts->rcw_override) {
497 ddr->ddr_sdram_rcw_1 = popts->rcw_1;
498 ddr->ddr_sdram_rcw_2 = popts->rcw_2;
499 } else {
500 ddr->ddr_sdram_rcw_1 =
501 common_dimm->rcw[0] << 28 | \
502 common_dimm->rcw[1] << 24 | \
503 common_dimm->rcw[2] << 20 | \
504 common_dimm->rcw[3] << 16 | \
505 common_dimm->rcw[4] << 12 | \
506 common_dimm->rcw[5] << 8 | \
507 common_dimm->rcw[6] << 4 | \
508 common_dimm->rcw[7];
509 ddr->ddr_sdram_rcw_2 =
510 common_dimm->rcw[8] << 28 | \
511 common_dimm->rcw[9] << 24 | \
512 common_dimm->rcw[10] << 20 | \
513 common_dimm->rcw[11] << 16 | \
514 common_dimm->rcw[12] << 12 | \
515 common_dimm->rcw[13] << 8 | \
516 common_dimm->rcw[14] << 4 | \
517 common_dimm->rcw[15];
518 }
yorkde879322010-07-02 22:25:55 +0000519 debug("FSLDDR: ddr_sdram_rcw_1 = 0x%08x\n", ddr->ddr_sdram_rcw_1);
520 debug("FSLDDR: ddr_sdram_rcw_2 = 0x%08x\n", ddr->ddr_sdram_rcw_2);
521 }
522}
523
Kumar Gala124b0822008-08-26 15:01:29 -0500524/* DDR SDRAM control configuration (DDR_SDRAM_CFG) */
525static void set_ddr_sdram_cfg(fsl_ddr_cfg_regs_t *ddr,
526 const memctl_options_t *popts,
527 const common_timing_params_t *common_dimm)
528{
529 unsigned int mem_en; /* DDR SDRAM interface logic enable */
530 unsigned int sren; /* Self refresh enable (during sleep) */
531 unsigned int ecc_en; /* ECC enable. */
532 unsigned int rd_en; /* Registered DIMM enable */
533 unsigned int sdram_type; /* Type of SDRAM */
534 unsigned int dyn_pwr; /* Dynamic power management mode */
535 unsigned int dbw; /* DRAM dta bus width */
Dave Liu4758d532008-11-21 16:31:29 +0800536 unsigned int eight_be = 0; /* 8-beat burst enable, DDR2 is zero */
Kumar Gala124b0822008-08-26 15:01:29 -0500537 unsigned int ncap = 0; /* Non-concurrent auto-precharge */
538 unsigned int threeT_en; /* Enable 3T timing */
539 unsigned int twoT_en; /* Enable 2T timing */
540 unsigned int ba_intlv_ctl; /* Bank (CS) interleaving control */
541 unsigned int x32_en = 0; /* x32 enable */
542 unsigned int pchb8 = 0; /* precharge bit 8 enable */
543 unsigned int hse; /* Global half strength override */
544 unsigned int mem_halt = 0; /* memory controller halt */
545 unsigned int bi = 0; /* Bypass initialization */
546
547 mem_en = 1;
548 sren = popts->self_refresh_in_sleep;
549 if (common_dimm->all_DIMMs_ECC_capable) {
550 /* Allow setting of ECC only if all DIMMs are ECC. */
551 ecc_en = popts->ECC_mode;
552 } else {
553 ecc_en = 0;
554 }
555
York Sunba0c2eb2011-01-10 12:03:00 +0000556 if (common_dimm->all_DIMMs_registered
557 && !common_dimm->all_DIMMs_unbuffered) {
558 rd_en = 1;
559 twoT_en = 0;
560 } else {
561 rd_en = 0;
562 twoT_en = popts->twoT_en;
563 }
Kumar Gala124b0822008-08-26 15:01:29 -0500564
565 sdram_type = CONFIG_FSL_SDRAM_TYPE;
566
567 dyn_pwr = popts->dynamic_power;
568 dbw = popts->data_bus_width;
Dave Liu4be87b22009-03-14 12:48:30 +0800569 /* 8-beat burst enable DDR-III case
570 * we must clear it when use the on-the-fly mode,
571 * must set it when use the 32-bits bus mode.
572 */
573 if (sdram_type == SDRAM_TYPE_DDR3) {
574 if (popts->burst_length == DDR_BL8)
575 eight_be = 1;
576 if (popts->burst_length == DDR_OTF)
577 eight_be = 0;
578 if (dbw == 0x1)
579 eight_be = 1;
580 }
581
Kumar Gala124b0822008-08-26 15:01:29 -0500582 threeT_en = popts->threeT_en;
Kumar Gala124b0822008-08-26 15:01:29 -0500583 ba_intlv_ctl = popts->ba_intlv_ctl;
584 hse = popts->half_strength_driver_enable;
585
586 ddr->ddr_sdram_cfg = (0
587 | ((mem_en & 0x1) << 31)
588 | ((sren & 0x1) << 30)
589 | ((ecc_en & 0x1) << 29)
590 | ((rd_en & 0x1) << 28)
591 | ((sdram_type & 0x7) << 24)
592 | ((dyn_pwr & 0x1) << 21)
593 | ((dbw & 0x3) << 19)
594 | ((eight_be & 0x1) << 18)
595 | ((ncap & 0x1) << 17)
596 | ((threeT_en & 0x1) << 16)
597 | ((twoT_en & 0x1) << 15)
598 | ((ba_intlv_ctl & 0x7F) << 8)
599 | ((x32_en & 0x1) << 5)
600 | ((pchb8 & 0x1) << 4)
601 | ((hse & 0x1) << 3)
602 | ((mem_halt & 0x1) << 1)
603 | ((bi & 0x1) << 0)
604 );
Haiying Wangd90e0402008-10-03 12:37:26 -0400605 debug("FSLDDR: ddr_sdram_cfg = 0x%08x\n", ddr->ddr_sdram_cfg);
Kumar Gala124b0822008-08-26 15:01:29 -0500606}
607
608/* DDR SDRAM control configuration 2 (DDR_SDRAM_CFG_2) */
609static void set_ddr_sdram_cfg_2(fsl_ddr_cfg_regs_t *ddr,
York Sunba0c2eb2011-01-10 12:03:00 +0000610 const memctl_options_t *popts,
611 const unsigned int unq_mrs_en)
Kumar Gala124b0822008-08-26 15:01:29 -0500612{
613 unsigned int frc_sr = 0; /* Force self refresh */
614 unsigned int sr_ie = 0; /* Self-refresh interrupt enable */
615 unsigned int dll_rst_dis; /* DLL reset disable */
616 unsigned int dqs_cfg; /* DQS configuration */
617 unsigned int odt_cfg; /* ODT configuration */
618 unsigned int num_pr; /* Number of posted refreshes */
619 unsigned int obc_cfg; /* On-The-Fly Burst Chop Cfg */
620 unsigned int ap_en; /* Address Parity Enable */
621 unsigned int d_init; /* DRAM data initialization */
622 unsigned int rcw_en = 0; /* Register Control Word Enable */
623 unsigned int md_en = 0; /* Mirrored DIMM Enable */
yorkf4f93c62010-07-02 22:25:53 +0000624 unsigned int qd_en = 0; /* quad-rank DIMM Enable */
Kumar Gala124b0822008-08-26 15:01:29 -0500625
626 dll_rst_dis = 1; /* Make this configurable */
627 dqs_cfg = popts->DQS_config;
628 if (popts->cs_local_opts[0].odt_rd_cfg
629 || popts->cs_local_opts[0].odt_wr_cfg) {
630 /* FIXME */
631 odt_cfg = 2;
632 } else {
633 odt_cfg = 0;
634 }
635
636 num_pr = 1; /* Make this configurable */
637
638 /*
639 * 8572 manual says
640 * {TIMING_CFG_1[PRETOACT]
641 * + [DDR_SDRAM_CFG_2[NUM_PR]
642 * * ({EXT_REFREC || REFREC} + 8 + 2)]}
643 * << DDR_SDRAM_INTERVAL[REFINT]
644 */
Dave Liu4be87b22009-03-14 12:48:30 +0800645#if defined(CONFIG_FSL_DDR3)
646 obc_cfg = popts->OTF_burst_chop_en;
647#else
648 obc_cfg = 0;
649#endif
Kumar Gala124b0822008-08-26 15:01:29 -0500650
York Sunba0c2eb2011-01-10 12:03:00 +0000651 if (popts->registered_dimm_en) {
652 rcw_en = 1;
653 ap_en = popts->ap_en;
654 } else {
655 rcw_en = 0;
656 ap_en = 0;
657 }
Kumar Gala124b0822008-08-26 15:01:29 -0500658
659#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
660 /* Use the DDR controller to auto initialize memory. */
York Sunba0c2eb2011-01-10 12:03:00 +0000661 d_init = popts->ECC_init_using_memctl;
Kumar Gala124b0822008-08-26 15:01:29 -0500662 ddr->ddr_data_init = CONFIG_MEM_INIT_VALUE;
663 debug("DDR: ddr_data_init = 0x%08x\n", ddr->ddr_data_init);
664#else
665 /* Memory will be initialized via DMA, or not at all. */
666 d_init = 0;
667#endif
668
Dave Liu4be87b22009-03-14 12:48:30 +0800669#if defined(CONFIG_FSL_DDR3)
670 md_en = popts->mirrored_dimm;
671#endif
yorkf4f93c62010-07-02 22:25:53 +0000672 qd_en = popts->quad_rank_present ? 1 : 0;
Kumar Gala124b0822008-08-26 15:01:29 -0500673 ddr->ddr_sdram_cfg_2 = (0
674 | ((frc_sr & 0x1) << 31)
675 | ((sr_ie & 0x1) << 30)
676 | ((dll_rst_dis & 0x1) << 29)
677 | ((dqs_cfg & 0x3) << 26)
678 | ((odt_cfg & 0x3) << 21)
679 | ((num_pr & 0xf) << 12)
yorkf4f93c62010-07-02 22:25:53 +0000680 | (qd_en << 9)
York Sunba0c2eb2011-01-10 12:03:00 +0000681 | (unq_mrs_en << 8)
Kumar Gala124b0822008-08-26 15:01:29 -0500682 | ((obc_cfg & 0x1) << 6)
683 | ((ap_en & 0x1) << 5)
684 | ((d_init & 0x1) << 4)
685 | ((rcw_en & 0x1) << 2)
686 | ((md_en & 0x1) << 0)
687 );
Haiying Wangd90e0402008-10-03 12:37:26 -0400688 debug("FSLDDR: ddr_sdram_cfg_2 = 0x%08x\n", ddr->ddr_sdram_cfg_2);
Kumar Gala124b0822008-08-26 15:01:29 -0500689}
690
691/* DDR SDRAM Mode configuration 2 (DDR_SDRAM_MODE_2) */
Dave Liu2d0f1252009-12-16 10:24:38 -0600692static void set_ddr_sdram_mode_2(fsl_ddr_cfg_regs_t *ddr,
York Sunba0c2eb2011-01-10 12:03:00 +0000693 const memctl_options_t *popts,
694 const unsigned int unq_mrs_en)
Kumar Gala124b0822008-08-26 15:01:29 -0500695{
696 unsigned short esdmode2 = 0; /* Extended SDRAM mode 2 */
697 unsigned short esdmode3 = 0; /* Extended SDRAM mode 3 */
698
Dave Liu4be87b22009-03-14 12:48:30 +0800699#if defined(CONFIG_FSL_DDR3)
Kumar Gala65b5be22011-01-20 01:53:15 -0600700 int i;
Dave Liu2d0f1252009-12-16 10:24:38 -0600701 unsigned int rtt_wr = 0; /* Rtt_WR - dynamic ODT off */
Dave Liu4be87b22009-03-14 12:48:30 +0800702 unsigned int srt = 0; /* self-refresh temerature, normal range */
703 unsigned int asr = 0; /* auto self-refresh disable */
704 unsigned int cwl = compute_cas_write_latency() - 5;
705 unsigned int pasr = 0; /* partial array self refresh disable */
706
Dave Liu2d0f1252009-12-16 10:24:38 -0600707 if (popts->rtt_override)
708 rtt_wr = popts->rtt_wr_override_value;
York Sunba0c2eb2011-01-10 12:03:00 +0000709 else
710 rtt_wr = popts->cs_local_opts[0].odt_rtt_wr;
Dave Liu4be87b22009-03-14 12:48:30 +0800711 esdmode2 = (0
712 | ((rtt_wr & 0x3) << 9)
713 | ((srt & 0x1) << 7)
714 | ((asr & 0x1) << 6)
715 | ((cwl & 0x7) << 3)
716 | ((pasr & 0x7) << 0));
717#endif
Kumar Gala124b0822008-08-26 15:01:29 -0500718 ddr->ddr_sdram_mode_2 = (0
719 | ((esdmode2 & 0xFFFF) << 16)
720 | ((esdmode3 & 0xFFFF) << 0)
721 );
Haiying Wangd90e0402008-10-03 12:37:26 -0400722 debug("FSLDDR: ddr_sdram_mode_2 = 0x%08x\n", ddr->ddr_sdram_mode_2);
York Sunba0c2eb2011-01-10 12:03:00 +0000723
724#ifdef CONFIG_FSL_DDR3
725 if (unq_mrs_en) { /* unique mode registers are supported */
726 for (i = 1; i < 4; i++) {
727 if (popts->rtt_override)
728 rtt_wr = popts->rtt_wr_override_value;
729 else
730 rtt_wr = popts->cs_local_opts[i].odt_rtt_wr;
731
732 esdmode2 &= 0xF9FF; /* clear bit 10, 9 */
733 esdmode2 |= (rtt_wr & 0x3) << 9;
734 switch (i) {
735 case 1:
736 ddr->ddr_sdram_mode_4 = (0
737 | ((esdmode2 & 0xFFFF) << 16)
738 | ((esdmode3 & 0xFFFF) << 0)
739 );
740 break;
741 case 2:
742 ddr->ddr_sdram_mode_6 = (0
743 | ((esdmode2 & 0xFFFF) << 16)
744 | ((esdmode3 & 0xFFFF) << 0)
745 );
746 break;
747 case 3:
748 ddr->ddr_sdram_mode_8 = (0
749 | ((esdmode2 & 0xFFFF) << 16)
750 | ((esdmode3 & 0xFFFF) << 0)
751 );
752 break;
753 }
754 }
755 debug("FSLDDR: ddr_sdram_mode_4 = 0x%08x\n",
756 ddr->ddr_sdram_mode_4);
757 debug("FSLDDR: ddr_sdram_mode_6 = 0x%08x\n",
758 ddr->ddr_sdram_mode_6);
759 debug("FSLDDR: ddr_sdram_mode_8 = 0x%08x\n",
760 ddr->ddr_sdram_mode_8);
761 }
762#endif
Kumar Gala124b0822008-08-26 15:01:29 -0500763}
764
765/* DDR SDRAM Interval Configuration (DDR_SDRAM_INTERVAL) */
766static void set_ddr_sdram_interval(fsl_ddr_cfg_regs_t *ddr,
767 const memctl_options_t *popts,
768 const common_timing_params_t *common_dimm)
769{
770 unsigned int refint; /* Refresh interval */
771 unsigned int bstopre; /* Precharge interval */
772
773 refint = picos_to_mclk(common_dimm->refresh_rate_ps);
774
775 bstopre = popts->bstopre;
776
777 /* refint field used 0x3FFF in earlier controllers */
778 ddr->ddr_sdram_interval = (0
779 | ((refint & 0xFFFF) << 16)
780 | ((bstopre & 0x3FFF) << 0)
781 );
Haiying Wangd90e0402008-10-03 12:37:26 -0400782 debug("FSLDDR: ddr_sdram_interval = 0x%08x\n", ddr->ddr_sdram_interval);
Kumar Gala124b0822008-08-26 15:01:29 -0500783}
784
Dave Liu4be87b22009-03-14 12:48:30 +0800785#if defined(CONFIG_FSL_DDR3)
Kumar Gala124b0822008-08-26 15:01:29 -0500786/* DDR SDRAM Mode configuration set (DDR_SDRAM_MODE) */
787static void set_ddr_sdram_mode(fsl_ddr_cfg_regs_t *ddr,
788 const memctl_options_t *popts,
789 const common_timing_params_t *common_dimm,
790 unsigned int cas_latency,
York Sunba0c2eb2011-01-10 12:03:00 +0000791 unsigned int additive_latency,
792 const unsigned int unq_mrs_en)
Kumar Gala124b0822008-08-26 15:01:29 -0500793{
794 unsigned short esdmode; /* Extended SDRAM mode */
795 unsigned short sdmode; /* SDRAM mode */
796
Dave Liu4be87b22009-03-14 12:48:30 +0800797 /* Mode Register - MR1 */
798 unsigned int qoff = 0; /* Output buffer enable 0=yes, 1=no */
799 unsigned int tdqs_en = 0; /* TDQS Enable: 0=no, 1=yes */
800 unsigned int rtt;
801 unsigned int wrlvl_en = 0; /* Write level enable: 0=no, 1=yes */
802 unsigned int al = 0; /* Posted CAS# additive latency (AL) */
York Sunba0c2eb2011-01-10 12:03:00 +0000803 unsigned int dic = 0; /* Output driver impedance, 40ohm */
Dave Liu4be87b22009-03-14 12:48:30 +0800804 unsigned int dll_en = 0; /* DLL Enable 0=Enable (Normal),
805 1=Disable (Test/Debug) */
806
807 /* Mode Register - MR0 */
808 unsigned int dll_on; /* DLL control for precharge PD, 0=off, 1=on */
809 unsigned int wr; /* Write Recovery */
810 unsigned int dll_rst; /* DLL Reset */
811 unsigned int mode; /* Normal=0 or Test=1 */
812 unsigned int caslat = 4;/* CAS# latency, default set as 6 cycles */
813 /* BT: Burst Type (0=Nibble Sequential, 1=Interleaved) */
814 unsigned int bt;
815 unsigned int bl; /* BL: Burst Length */
816
817 unsigned int wr_mclk;
York Sun3673f2c2011-03-02 14:24:11 -0800818 /*
819 * DDR_SDRAM_MODE doesn't support 9,11,13,15
820 * Please refer JEDEC Standard No. 79-3E for Mode Register MR0
821 * for this table
822 */
823 static const u8 wr_table[] = {1, 2, 3, 4, 5, 5, 6, 6, 7, 7, 0, 0};
Dave Liu4be87b22009-03-14 12:48:30 +0800824
825 const unsigned int mclk_ps = get_memory_clk_period_ps();
York Sunba0c2eb2011-01-10 12:03:00 +0000826 int i;
Dave Liu4be87b22009-03-14 12:48:30 +0800827
Dave Liu4be87b22009-03-14 12:48:30 +0800828 if (popts->rtt_override)
829 rtt = popts->rtt_override_value;
York Sunba0c2eb2011-01-10 12:03:00 +0000830 else
831 rtt = popts->cs_local_opts[0].odt_rtt_norm;
Dave Liu4be87b22009-03-14 12:48:30 +0800832
833 if (additive_latency == (cas_latency - 1))
834 al = 1;
835 if (additive_latency == (cas_latency - 2))
836 al = 2;
837
York Sunba0c2eb2011-01-10 12:03:00 +0000838 if (popts->quad_rank_present)
839 dic = 1; /* output driver impedance 240/7 ohm */
840
Dave Liu4be87b22009-03-14 12:48:30 +0800841 /*
842 * The esdmode value will also be used for writing
843 * MR1 during write leveling for DDR3, although the
844 * bits specifically related to the write leveling
845 * scheme will be handled automatically by the DDR
846 * controller. so we set the wrlvl_en = 0 here.
847 */
848 esdmode = (0
849 | ((qoff & 0x1) << 12)
850 | ((tdqs_en & 0x1) << 11)
Kumar Gala14f2eb12009-09-10 14:54:55 -0500851 | ((rtt & 0x4) << 7) /* rtt field is split */
Dave Liu4be87b22009-03-14 12:48:30 +0800852 | ((wrlvl_en & 0x1) << 7)
Kumar Gala14f2eb12009-09-10 14:54:55 -0500853 | ((rtt & 0x2) << 5) /* rtt field is split */
854 | ((dic & 0x2) << 4) /* DIC field is split */
Dave Liu4be87b22009-03-14 12:48:30 +0800855 | ((al & 0x3) << 3)
Kumar Gala14f2eb12009-09-10 14:54:55 -0500856 | ((rtt & 0x1) << 2) /* rtt field is split */
Dave Liu4be87b22009-03-14 12:48:30 +0800857 | ((dic & 0x1) << 1) /* DIC field is split */
858 | ((dll_en & 0x1) << 0)
859 );
860
861 /*
862 * DLL control for precharge PD
863 * 0=slow exit DLL off (tXPDLL)
864 * 1=fast exit DLL on (tXP)
865 */
866 dll_on = 1;
York Sun3673f2c2011-03-02 14:24:11 -0800867
Dave Liu4be87b22009-03-14 12:48:30 +0800868 wr_mclk = (common_dimm->tWR_ps + mclk_ps - 1) / mclk_ps;
York Sun3673f2c2011-03-02 14:24:11 -0800869 wr = wr_table[wr_mclk - 5];
870
Dave Liu4be87b22009-03-14 12:48:30 +0800871 dll_rst = 0; /* dll no reset */
872 mode = 0; /* normal mode */
873
874 /* look up table to get the cas latency bits */
875 if (cas_latency >= 5 && cas_latency <= 11) {
876 unsigned char cas_latency_table[7] = {
877 0x2, /* 5 clocks */
878 0x4, /* 6 clocks */
879 0x6, /* 7 clocks */
880 0x8, /* 8 clocks */
881 0xa, /* 9 clocks */
882 0xc, /* 10 clocks */
883 0xe /* 11 clocks */
884 };
885 caslat = cas_latency_table[cas_latency - 5];
886 }
887 bt = 0; /* Nibble sequential */
888
889 switch (popts->burst_length) {
890 case DDR_BL8:
891 bl = 0;
892 break;
893 case DDR_OTF:
894 bl = 1;
895 break;
896 case DDR_BC4:
897 bl = 2;
898 break;
899 default:
900 printf("Error: invalid burst length of %u specified. "
901 " Defaulting to on-the-fly BC4 or BL8 beats.\n",
902 popts->burst_length);
903 bl = 1;
904 break;
905 }
906
907 sdmode = (0
908 | ((dll_on & 0x1) << 12)
909 | ((wr & 0x7) << 9)
910 | ((dll_rst & 0x1) << 8)
911 | ((mode & 0x1) << 7)
912 | (((caslat >> 1) & 0x7) << 4)
913 | ((bt & 0x1) << 3)
914 | ((bl & 0x3) << 0)
915 );
916
917 ddr->ddr_sdram_mode = (0
918 | ((esdmode & 0xFFFF) << 16)
919 | ((sdmode & 0xFFFF) << 0)
920 );
921
922 debug("FSLDDR: ddr_sdram_mode = 0x%08x\n", ddr->ddr_sdram_mode);
York Sunba0c2eb2011-01-10 12:03:00 +0000923
924 if (unq_mrs_en) { /* unique mode registers are supported */
925 for (i = 1; i < 4; i++) {
926 if (popts->rtt_override)
927 rtt = popts->rtt_override_value;
928 else
929 rtt = popts->cs_local_opts[i].odt_rtt_norm;
930
931 esdmode &= 0xFDBB; /* clear bit 9,6,2 */
932 esdmode |= (0
933 | ((rtt & 0x4) << 7) /* rtt field is split */
934 | ((rtt & 0x2) << 5) /* rtt field is split */
935 | ((rtt & 0x1) << 2) /* rtt field is split */
936 );
937 switch (i) {
938 case 1:
939 ddr->ddr_sdram_mode_3 = (0
940 | ((esdmode & 0xFFFF) << 16)
941 | ((sdmode & 0xFFFF) << 0)
942 );
943 break;
944 case 2:
945 ddr->ddr_sdram_mode_5 = (0
946 | ((esdmode & 0xFFFF) << 16)
947 | ((sdmode & 0xFFFF) << 0)
948 );
949 break;
950 case 3:
951 ddr->ddr_sdram_mode_7 = (0
952 | ((esdmode & 0xFFFF) << 16)
953 | ((sdmode & 0xFFFF) << 0)
954 );
955 break;
956 }
957 }
958 debug("FSLDDR: ddr_sdram_mode_3 = 0x%08x\n",
959 ddr->ddr_sdram_mode_3);
960 debug("FSLDDR: ddr_sdram_mode_5 = 0x%08x\n",
961 ddr->ddr_sdram_mode_5);
962 debug("FSLDDR: ddr_sdram_mode_5 = 0x%08x\n",
963 ddr->ddr_sdram_mode_5);
964 }
Dave Liu4be87b22009-03-14 12:48:30 +0800965}
966
967#else /* !CONFIG_FSL_DDR3 */
968
969/* DDR SDRAM Mode configuration set (DDR_SDRAM_MODE) */
970static void set_ddr_sdram_mode(fsl_ddr_cfg_regs_t *ddr,
971 const memctl_options_t *popts,
972 const common_timing_params_t *common_dimm,
973 unsigned int cas_latency,
York Sunba0c2eb2011-01-10 12:03:00 +0000974 unsigned int additive_latency,
975 const unsigned int unq_mrs_en)
Dave Liu4be87b22009-03-14 12:48:30 +0800976{
977 unsigned short esdmode; /* Extended SDRAM mode */
978 unsigned short sdmode; /* SDRAM mode */
979
Kumar Gala124b0822008-08-26 15:01:29 -0500980 /*
981 * FIXME: This ought to be pre-calculated in a
982 * technology-specific routine,
983 * e.g. compute_DDR2_mode_register(), and then the
984 * sdmode and esdmode passed in as part of common_dimm.
985 */
986
987 /* Extended Mode Register */
988 unsigned int mrs = 0; /* Mode Register Set */
989 unsigned int outputs = 0; /* 0=Enabled, 1=Disabled */
990 unsigned int rdqs_en = 0; /* RDQS Enable: 0=no, 1=yes */
991 unsigned int dqs_en = 0; /* DQS# Enable: 0=enable, 1=disable */
992 unsigned int ocd = 0; /* 0x0=OCD not supported,
993 0x7=OCD default state */
994 unsigned int rtt;
995 unsigned int al; /* Posted CAS# additive latency (AL) */
996 unsigned int ods = 0; /* Output Drive Strength:
997 0 = Full strength (18ohm)
998 1 = Reduced strength (4ohm) */
999 unsigned int dll_en = 0; /* DLL Enable 0=Enable (Normal),
1000 1=Disable (Test/Debug) */
1001
1002 /* Mode Register (MR) */
1003 unsigned int mr; /* Mode Register Definition */
1004 unsigned int pd; /* Power-Down Mode */
1005 unsigned int wr; /* Write Recovery */
1006 unsigned int dll_res; /* DLL Reset */
1007 unsigned int mode; /* Normal=0 or Test=1 */
Kumar Gala35ad58d2008-09-05 14:40:29 -05001008 unsigned int caslat = 0;/* CAS# latency */
Kumar Gala124b0822008-08-26 15:01:29 -05001009 /* BT: Burst Type (0=Sequential, 1=Interleaved) */
1010 unsigned int bt;
1011 unsigned int bl; /* BL: Burst Length */
1012
1013#if defined(CONFIG_FSL_DDR2)
1014 const unsigned int mclk_ps = get_memory_clk_period_ps();
1015#endif
1016
1017 rtt = fsl_ddr_get_rtt();
1018
1019 al = additive_latency;
1020
1021 esdmode = (0
1022 | ((mrs & 0x3) << 14)
1023 | ((outputs & 0x1) << 12)
1024 | ((rdqs_en & 0x1) << 11)
1025 | ((dqs_en & 0x1) << 10)
1026 | ((ocd & 0x7) << 7)
1027 | ((rtt & 0x2) << 5) /* rtt field is split */
1028 | ((al & 0x7) << 3)
1029 | ((rtt & 0x1) << 2) /* rtt field is split */
1030 | ((ods & 0x1) << 1)
1031 | ((dll_en & 0x1) << 0)
1032 );
1033
1034 mr = 0; /* FIXME: CHECKME */
1035
1036 /*
1037 * 0 = Fast Exit (Normal)
1038 * 1 = Slow Exit (Low Power)
1039 */
1040 pd = 0;
1041
1042#if defined(CONFIG_FSL_DDR1)
1043 wr = 0; /* Historical */
1044#elif defined(CONFIG_FSL_DDR2)
1045 wr = (common_dimm->tWR_ps + mclk_ps - 1) / mclk_ps - 1;
Kumar Gala124b0822008-08-26 15:01:29 -05001046#endif
1047 dll_res = 0;
1048 mode = 0;
1049
1050#if defined(CONFIG_FSL_DDR1)
1051 if (1 <= cas_latency && cas_latency <= 4) {
1052 unsigned char mode_caslat_table[4] = {
1053 0x5, /* 1.5 clocks */
1054 0x2, /* 2.0 clocks */
1055 0x6, /* 2.5 clocks */
1056 0x3 /* 3.0 clocks */
1057 };
Kumar Gala35ad58d2008-09-05 14:40:29 -05001058 caslat = mode_caslat_table[cas_latency - 1];
1059 } else {
1060 printf("Warning: unknown cas_latency %d\n", cas_latency);
Kumar Gala124b0822008-08-26 15:01:29 -05001061 }
1062#elif defined(CONFIG_FSL_DDR2)
1063 caslat = cas_latency;
Kumar Gala124b0822008-08-26 15:01:29 -05001064#endif
1065 bt = 0;
1066
1067 switch (popts->burst_length) {
Dave Liu4be87b22009-03-14 12:48:30 +08001068 case DDR_BL4:
Kumar Gala124b0822008-08-26 15:01:29 -05001069 bl = 2;
1070 break;
Dave Liu4be87b22009-03-14 12:48:30 +08001071 case DDR_BL8:
Kumar Gala124b0822008-08-26 15:01:29 -05001072 bl = 3;
1073 break;
1074 default:
1075 printf("Error: invalid burst length of %u specified. "
1076 " Defaulting to 4 beats.\n",
1077 popts->burst_length);
1078 bl = 2;
1079 break;
1080 }
1081
1082 sdmode = (0
1083 | ((mr & 0x3) << 14)
1084 | ((pd & 0x1) << 12)
1085 | ((wr & 0x7) << 9)
1086 | ((dll_res & 0x1) << 8)
1087 | ((mode & 0x1) << 7)
1088 | ((caslat & 0x7) << 4)
1089 | ((bt & 0x1) << 3)
1090 | ((bl & 0x7) << 0)
1091 );
1092
1093 ddr->ddr_sdram_mode = (0
1094 | ((esdmode & 0xFFFF) << 16)
1095 | ((sdmode & 0xFFFF) << 0)
1096 );
Haiying Wangd90e0402008-10-03 12:37:26 -04001097 debug("FSLDDR: ddr_sdram_mode = 0x%08x\n", ddr->ddr_sdram_mode);
Kumar Gala124b0822008-08-26 15:01:29 -05001098}
Dave Liu4be87b22009-03-14 12:48:30 +08001099#endif
Kumar Gala124b0822008-08-26 15:01:29 -05001100
1101/* DDR SDRAM Data Initialization (DDR_DATA_INIT) */
1102static void set_ddr_data_init(fsl_ddr_cfg_regs_t *ddr)
1103{
1104 unsigned int init_value; /* Initialization value */
1105
1106 init_value = 0xDEADBEEF;
1107 ddr->ddr_data_init = init_value;
1108}
1109
1110/*
1111 * DDR SDRAM Clock Control (DDR_SDRAM_CLK_CNTL)
1112 * The old controller on the 8540/60 doesn't have this register.
1113 * Hope it's OK to set it (to 0) anyway.
1114 */
1115static void set_ddr_sdram_clk_cntl(fsl_ddr_cfg_regs_t *ddr,
1116 const memctl_options_t *popts)
1117{
1118 unsigned int clk_adjust; /* Clock adjust */
1119
1120 clk_adjust = popts->clk_adjust;
1121 ddr->ddr_sdram_clk_cntl = (clk_adjust & 0xF) << 23;
yorkde879322010-07-02 22:25:55 +00001122 debug("FSLDDR: clk_cntl = 0x%08x\n", ddr->ddr_sdram_clk_cntl);
Kumar Gala124b0822008-08-26 15:01:29 -05001123}
1124
1125/* DDR Initialization Address (DDR_INIT_ADDR) */
1126static void set_ddr_init_addr(fsl_ddr_cfg_regs_t *ddr)
1127{
1128 unsigned int init_addr = 0; /* Initialization address */
1129
1130 ddr->ddr_init_addr = init_addr;
1131}
1132
1133/* DDR Initialization Address (DDR_INIT_EXT_ADDR) */
1134static void set_ddr_init_ext_addr(fsl_ddr_cfg_regs_t *ddr)
1135{
1136 unsigned int uia = 0; /* Use initialization address */
1137 unsigned int init_ext_addr = 0; /* Initialization address */
1138
1139 ddr->ddr_init_ext_addr = (0
1140 | ((uia & 0x1) << 31)
1141 | (init_ext_addr & 0xF)
1142 );
1143}
1144
1145/* DDR SDRAM Timing Configuration 4 (TIMING_CFG_4) */
Dave Liu3525e1a2010-03-05 12:22:00 +08001146static void set_timing_cfg_4(fsl_ddr_cfg_regs_t *ddr,
1147 const memctl_options_t *popts)
Kumar Gala124b0822008-08-26 15:01:29 -05001148{
1149 unsigned int rwt = 0; /* Read-to-write turnaround for same CS */
1150 unsigned int wrt = 0; /* Write-to-read turnaround for same CS */
1151 unsigned int rrt = 0; /* Read-to-read turnaround for same CS */
1152 unsigned int wwt = 0; /* Write-to-write turnaround for same CS */
1153 unsigned int dll_lock = 0; /* DDR SDRAM DLL Lock Time */
1154
Dave Liu4be87b22009-03-14 12:48:30 +08001155#if defined(CONFIG_FSL_DDR3)
Dave Liu3525e1a2010-03-05 12:22:00 +08001156 if (popts->burst_length == DDR_BL8) {
1157 /* We set BL/2 for fixed BL8 */
1158 rrt = 0; /* BL/2 clocks */
1159 wwt = 0; /* BL/2 clocks */
1160 } else {
1161 /* We need to set BL/2 + 2 to BC4 and OTF */
1162 rrt = 2; /* BL/2 + 2 clocks */
1163 wwt = 2; /* BL/2 + 2 clocks */
1164 }
Dave Liu4be87b22009-03-14 12:48:30 +08001165 dll_lock = 1; /* tDLLK = 512 clocks from spec */
1166#endif
Kumar Gala124b0822008-08-26 15:01:29 -05001167 ddr->timing_cfg_4 = (0
1168 | ((rwt & 0xf) << 28)
1169 | ((wrt & 0xf) << 24)
1170 | ((rrt & 0xf) << 20)
1171 | ((wwt & 0xf) << 16)
1172 | (dll_lock & 0x3)
1173 );
Haiying Wangd90e0402008-10-03 12:37:26 -04001174 debug("FSLDDR: timing_cfg_4 = 0x%08x\n", ddr->timing_cfg_4);
Kumar Gala124b0822008-08-26 15:01:29 -05001175}
1176
1177/* DDR SDRAM Timing Configuration 5 (TIMING_CFG_5) */
York Sunba0c2eb2011-01-10 12:03:00 +00001178static void set_timing_cfg_5(fsl_ddr_cfg_regs_t *ddr, unsigned int cas_latency)
Kumar Gala124b0822008-08-26 15:01:29 -05001179{
1180 unsigned int rodt_on = 0; /* Read to ODT on */
1181 unsigned int rodt_off = 0; /* Read to ODT off */
1182 unsigned int wodt_on = 0; /* Write to ODT on */
1183 unsigned int wodt_off = 0; /* Write to ODT off */
1184
Dave Liu4be87b22009-03-14 12:48:30 +08001185#if defined(CONFIG_FSL_DDR3)
York Sunba0c2eb2011-01-10 12:03:00 +00001186 /* rodt_on = timing_cfg_1[caslat] - timing_cfg_2[wrlat] + 1 */
1187 rodt_on = cas_latency - ((ddr->timing_cfg_2 & 0x00780000) >> 19) + 1;
Dave Liu4be87b22009-03-14 12:48:30 +08001188 rodt_off = 4; /* 4 clocks */
york1714e492010-07-02 22:25:56 +00001189 wodt_on = 1; /* 1 clocks */
Dave Liu4be87b22009-03-14 12:48:30 +08001190 wodt_off = 4; /* 4 clocks */
1191#endif
1192
Kumar Gala124b0822008-08-26 15:01:29 -05001193 ddr->timing_cfg_5 = (0
Dave Liu4758d532008-11-21 16:31:29 +08001194 | ((rodt_on & 0x1f) << 24)
1195 | ((rodt_off & 0x7) << 20)
1196 | ((wodt_on & 0x1f) << 12)
1197 | ((wodt_off & 0x7) << 8)
Kumar Gala124b0822008-08-26 15:01:29 -05001198 );
Haiying Wangd90e0402008-10-03 12:37:26 -04001199 debug("FSLDDR: timing_cfg_5 = 0x%08x\n", ddr->timing_cfg_5);
Kumar Gala124b0822008-08-26 15:01:29 -05001200}
1201
1202/* DDR ZQ Calibration Control (DDR_ZQ_CNTL) */
Dave Liu4be87b22009-03-14 12:48:30 +08001203static void set_ddr_zq_cntl(fsl_ddr_cfg_regs_t *ddr, unsigned int zq_en)
Kumar Gala124b0822008-08-26 15:01:29 -05001204{
Kumar Gala124b0822008-08-26 15:01:29 -05001205 unsigned int zqinit = 0;/* POR ZQ Calibration Time (tZQinit) */
1206 /* Normal Operation Full Calibration Time (tZQoper) */
1207 unsigned int zqoper = 0;
1208 /* Normal Operation Short Calibration Time (tZQCS) */
1209 unsigned int zqcs = 0;
1210
Dave Liu4be87b22009-03-14 12:48:30 +08001211 if (zq_en) {
1212 zqinit = 9; /* 512 clocks */
1213 zqoper = 8; /* 256 clocks */
1214 zqcs = 6; /* 64 clocks */
1215 }
1216
Kumar Gala124b0822008-08-26 15:01:29 -05001217 ddr->ddr_zq_cntl = (0
1218 | ((zq_en & 0x1) << 31)
1219 | ((zqinit & 0xF) << 24)
1220 | ((zqoper & 0xF) << 16)
1221 | ((zqcs & 0xF) << 8)
1222 );
York Sunba0c2eb2011-01-10 12:03:00 +00001223 debug("FSLDDR: zq_cntl = 0x%08x\n", ddr->ddr_zq_cntl);
Kumar Gala124b0822008-08-26 15:01:29 -05001224}
1225
1226/* DDR Write Leveling Control (DDR_WRLVL_CNTL) */
Dave Liu64ee7df2009-12-16 10:24:37 -06001227static void set_ddr_wrlvl_cntl(fsl_ddr_cfg_regs_t *ddr, unsigned int wrlvl_en,
1228 const memctl_options_t *popts)
Kumar Gala124b0822008-08-26 15:01:29 -05001229{
Kumar Gala124b0822008-08-26 15:01:29 -05001230 /*
1231 * First DQS pulse rising edge after margining mode
1232 * is programmed (tWL_MRD)
1233 */
1234 unsigned int wrlvl_mrd = 0;
1235 /* ODT delay after margining mode is programmed (tWL_ODTEN) */
1236 unsigned int wrlvl_odten = 0;
1237 /* DQS/DQS_ delay after margining mode is programmed (tWL_DQSEN) */
1238 unsigned int wrlvl_dqsen = 0;
1239 /* WRLVL_SMPL: Write leveling sample time */
1240 unsigned int wrlvl_smpl = 0;
1241 /* WRLVL_WLR: Write leveling repeition time */
1242 unsigned int wrlvl_wlr = 0;
1243 /* WRLVL_START: Write leveling start time */
1244 unsigned int wrlvl_start = 0;
1245
Dave Liu4be87b22009-03-14 12:48:30 +08001246 /* suggest enable write leveling for DDR3 due to fly-by topology */
1247 if (wrlvl_en) {
1248 /* tWL_MRD min = 40 nCK, we set it 64 */
1249 wrlvl_mrd = 0x6;
1250 /* tWL_ODTEN 128 */
1251 wrlvl_odten = 0x7;
1252 /* tWL_DQSEN min = 25 nCK, we set it 32 */
1253 wrlvl_dqsen = 0x5;
1254 /*
Dave Liu64ee7df2009-12-16 10:24:37 -06001255 * Write leveling sample time at least need 6 clocks
1256 * higher than tWLO to allow enough time for progagation
1257 * delay and sampling the prime data bits.
Dave Liu4be87b22009-03-14 12:48:30 +08001258 */
1259 wrlvl_smpl = 0xf;
1260 /*
1261 * Write leveling repetition time
1262 * at least tWLO + 6 clocks clocks
york1714e492010-07-02 22:25:56 +00001263 * we set it 64
Dave Liu4be87b22009-03-14 12:48:30 +08001264 */
york1714e492010-07-02 22:25:56 +00001265 wrlvl_wlr = 0x6;
Dave Liu4be87b22009-03-14 12:48:30 +08001266 /*
1267 * Write leveling start time
1268 * The value use for the DQS_ADJUST for the first sample
York Sunba0c2eb2011-01-10 12:03:00 +00001269 * when write leveling is enabled. It probably needs to be
1270 * overriden per platform.
Dave Liu4be87b22009-03-14 12:48:30 +08001271 */
1272 wrlvl_start = 0x8;
Dave Liu64ee7df2009-12-16 10:24:37 -06001273 /*
1274 * Override the write leveling sample and start time
1275 * according to specific board
1276 */
1277 if (popts->wrlvl_override) {
1278 wrlvl_smpl = popts->wrlvl_sample;
1279 wrlvl_start = popts->wrlvl_start;
1280 }
Dave Liu4be87b22009-03-14 12:48:30 +08001281 }
1282
Kumar Gala124b0822008-08-26 15:01:29 -05001283 ddr->ddr_wrlvl_cntl = (0
1284 | ((wrlvl_en & 0x1) << 31)
1285 | ((wrlvl_mrd & 0x7) << 24)
1286 | ((wrlvl_odten & 0x7) << 20)
1287 | ((wrlvl_dqsen & 0x7) << 16)
1288 | ((wrlvl_smpl & 0xf) << 12)
1289 | ((wrlvl_wlr & 0x7) << 8)
Dave Liu4758d532008-11-21 16:31:29 +08001290 | ((wrlvl_start & 0x1F) << 0)
Kumar Gala124b0822008-08-26 15:01:29 -05001291 );
York Sunba0c2eb2011-01-10 12:03:00 +00001292 debug("FSLDDR: wrlvl_cntl = 0x%08x\n", ddr->ddr_wrlvl_cntl);
Kumar Gala124b0822008-08-26 15:01:29 -05001293}
1294
1295/* DDR Self Refresh Counter (DDR_SR_CNTR) */
Dave Liu2aad0ae2008-11-21 16:31:35 +08001296static void set_ddr_sr_cntr(fsl_ddr_cfg_regs_t *ddr, unsigned int sr_it)
Kumar Gala124b0822008-08-26 15:01:29 -05001297{
Dave Liu2aad0ae2008-11-21 16:31:35 +08001298 /* Self Refresh Idle Threshold */
Kumar Gala124b0822008-08-26 15:01:29 -05001299 ddr->ddr_sr_cntr = (sr_it & 0xF) << 16;
1300}
1301
york42603722010-07-02 22:25:54 +00001302static void set_ddr_eor(fsl_ddr_cfg_regs_t *ddr, const memctl_options_t *popts)
1303{
1304 if (popts->addr_hash) {
1305 ddr->ddr_eor = 0x40000000; /* address hash enable */
1306 puts("Addess hashing enabled.\n");
1307 }
1308}
1309
York Sunba0c2eb2011-01-10 12:03:00 +00001310static void set_ddr_cdr1(fsl_ddr_cfg_regs_t *ddr, const memctl_options_t *popts)
1311{
1312 ddr->ddr_cdr1 = popts->ddr_cdr1;
1313 debug("FSLDDR: ddr_cdr1 = 0x%08x\n", ddr->ddr_cdr1);
1314}
1315
Kumar Gala124b0822008-08-26 15:01:29 -05001316unsigned int
1317check_fsl_memctl_config_regs(const fsl_ddr_cfg_regs_t *ddr)
1318{
1319 unsigned int res = 0;
1320
1321 /*
1322 * Check that DDR_SDRAM_CFG[RD_EN] and DDR_SDRAM_CFG[2T_EN] are
1323 * not set at the same time.
1324 */
1325 if (ddr->ddr_sdram_cfg & 0x10000000
1326 && ddr->ddr_sdram_cfg & 0x00008000) {
1327 printf("Error: DDR_SDRAM_CFG[RD_EN] and DDR_SDRAM_CFG[2T_EN] "
1328 " should not be set at the same time.\n");
1329 res++;
1330 }
1331
1332 return res;
1333}
1334
1335unsigned int
1336compute_fsl_memctl_config_regs(const memctl_options_t *popts,
1337 fsl_ddr_cfg_regs_t *ddr,
1338 const common_timing_params_t *common_dimm,
1339 const dimm_params_t *dimm_params,
Haiying Wang80ad4012010-12-01 10:35:31 -05001340 unsigned int dbw_cap_adj,
1341 unsigned int size_only)
Kumar Gala124b0822008-08-26 15:01:29 -05001342{
1343 unsigned int i;
1344 unsigned int cas_latency;
1345 unsigned int additive_latency;
Dave Liu2aad0ae2008-11-21 16:31:35 +08001346 unsigned int sr_it;
Dave Liu4be87b22009-03-14 12:48:30 +08001347 unsigned int zq_en;
1348 unsigned int wrlvl_en;
York Sunba0c2eb2011-01-10 12:03:00 +00001349 unsigned int ip_rev = 0;
1350 unsigned int unq_mrs_en = 0;
York Sun2927c5e2010-10-18 13:46:50 -07001351 int cs_en = 1;
Kumar Gala124b0822008-08-26 15:01:29 -05001352
1353 memset(ddr, 0, sizeof(fsl_ddr_cfg_regs_t));
1354
1355 if (common_dimm == NULL) {
1356 printf("Error: subset DIMM params struct null pointer\n");
1357 return 1;
1358 }
1359
1360 /*
1361 * Process overrides first.
1362 *
1363 * FIXME: somehow add dereated caslat to this
1364 */
1365 cas_latency = (popts->cas_latency_override)
1366 ? popts->cas_latency_override_value
1367 : common_dimm->lowest_common_SPD_caslat;
1368
1369 additive_latency = (popts->additive_latency_override)
1370 ? popts->additive_latency_override_value
1371 : common_dimm->additive_latency;
1372
Dave Liu2aad0ae2008-11-21 16:31:35 +08001373 sr_it = (popts->auto_self_refresh_en)
1374 ? popts->sr_it
1375 : 0;
Dave Liu4be87b22009-03-14 12:48:30 +08001376 /* ZQ calibration */
1377 zq_en = (popts->zq_en) ? 1 : 0;
1378 /* write leveling */
1379 wrlvl_en = (popts->wrlvl_en) ? 1 : 0;
Dave Liu2aad0ae2008-11-21 16:31:35 +08001380
Kumar Gala124b0822008-08-26 15:01:29 -05001381 /* Chip Select Memory Bounds (CSn_BNDS) */
1382 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
Kumar Gala68ef4bd2009-06-11 23:42:35 -05001383 unsigned long long ea = 0, sa = 0;
york93799ca2010-07-02 22:25:52 +00001384 unsigned int cs_per_dimm
1385 = CONFIG_CHIP_SELECTS_PER_CTRL / CONFIG_DIMM_SLOTS_PER_CTLR;
1386 unsigned int dimm_number
1387 = i / cs_per_dimm;
1388 unsigned long long rank_density
1389 = dimm_params[dimm_number].rank_density;
Haiying Wang272b5962008-10-03 12:36:39 -04001390
york93799ca2010-07-02 22:25:52 +00001391 if (((i == 1) && (popts->ba_intlv_ctl & FSL_DDR_CS0_CS1)) ||
1392 ((i == 2) && (popts->ba_intlv_ctl & 0x04)) ||
1393 ((i == 3) && (popts->ba_intlv_ctl & FSL_DDR_CS2_CS3))) {
1394 /*
1395 * Don't set up boundaries for unused CS
1396 * cs1 for cs0_cs1, cs0_cs1_and_cs2_cs3, cs0_cs1_cs2_cs3
1397 * cs2 for cs0_cs1_cs2_cs3
1398 * cs3 for cs2_cs3, cs0_cs1_and_cs2_cs3, cs0_cs1_cs2_cs3
Dave Liu625b2682009-12-16 10:24:39 -06001399 * But we need to set the ODT_RD_CFG and
1400 * ODT_WR_CFG for CS1_CONFIG here.
Haiying Wang272b5962008-10-03 12:36:39 -04001401 */
yorkf4f93c62010-07-02 22:25:53 +00001402 set_csn_config(dimm_number, i, ddr, popts, dimm_params);
york93799ca2010-07-02 22:25:52 +00001403 continue;
Kumar Gala124b0822008-08-26 15:01:29 -05001404 }
york93799ca2010-07-02 22:25:52 +00001405 if (dimm_params[dimm_number].n_ranks == 0) {
Kumar Gala124b0822008-08-26 15:01:29 -05001406 debug("Skipping setup of CS%u "
yorkf4f93c62010-07-02 22:25:53 +00001407 "because n_ranks on DIMM %u is 0\n", i, dimm_number);
Kumar Gala124b0822008-08-26 15:01:29 -05001408 continue;
1409 }
1410 if (popts->memctl_interleaving && popts->ba_intlv_ctl) {
1411 /*
1412 * This works superbank 2CS
york93799ca2010-07-02 22:25:52 +00001413 * There are 2 or more memory controllers configured
Kumar Gala124b0822008-08-26 15:01:29 -05001414 * identically, memory is interleaved between them,
1415 * and each controller uses rank interleaving within
1416 * itself. Therefore the starting and ending address
1417 * on each controller is twice the amount present on
York Sun2927c5e2010-10-18 13:46:50 -07001418 * each controller. If any CS is not included in the
1419 * interleaving, the memory on that CS is not accssible
1420 * and the total memory size is reduced. The CS is also
1421 * disabled.
Kumar Gala124b0822008-08-26 15:01:29 -05001422 */
york93799ca2010-07-02 22:25:52 +00001423 unsigned long long ctlr_density = 0;
1424 switch (popts->ba_intlv_ctl & FSL_DDR_CS0_CS1_CS2_CS3) {
1425 case FSL_DDR_CS0_CS1:
1426 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
1427 ctlr_density = dimm_params[0].rank_density * 2;
York Sun2927c5e2010-10-18 13:46:50 -07001428 if (i > 1)
1429 cs_en = 0;
york93799ca2010-07-02 22:25:52 +00001430 break;
1431 case FSL_DDR_CS2_CS3:
1432 ctlr_density = dimm_params[0].rank_density;
York Sun2927c5e2010-10-18 13:46:50 -07001433 if (i > 0)
1434 cs_en = 0;
york93799ca2010-07-02 22:25:52 +00001435 break;
1436 case FSL_DDR_CS0_CS1_CS2_CS3:
1437 /*
1438 * The four CS interleaving should have been verified by
1439 * populate_memctl_options()
1440 */
1441 ctlr_density = dimm_params[0].rank_density * 4;
1442 break;
1443 default:
1444 break;
1445 }
1446 ea = (CONFIG_NUM_DDR_CONTROLLERS *
1447 (ctlr_density >> dbw_cap_adj)) - 1;
Kumar Gala124b0822008-08-26 15:01:29 -05001448 }
1449 else if (!popts->memctl_interleaving && popts->ba_intlv_ctl) {
1450 /*
1451 * If memory interleaving between controllers is NOT
1452 * enabled, the starting address for each memory
1453 * controller is distinct. However, because rank
1454 * interleaving is enabled, the starting and ending
1455 * addresses of the total memory on that memory
1456 * controller needs to be programmed into its
1457 * respective CS0_BNDS.
1458 */
Haiying Wang272b5962008-10-03 12:36:39 -04001459 switch (popts->ba_intlv_ctl & FSL_DDR_CS0_CS1_CS2_CS3) {
1460 case FSL_DDR_CS0_CS1_CS2_CS3:
1461 /* CS0+CS1+CS2+CS3 interleaving, only CS0_CNDS
1462 * needs to be set.
1463 */
1464 sa = common_dimm->base_address;
1465 ea = sa + (4 * (rank_density >> dbw_cap_adj))-1;
1466 break;
1467 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
1468 /* CS0+CS1 and CS2+CS3 interleaving, CS0_CNDS
1469 * and CS2_CNDS need to be set.
1470 */
york93799ca2010-07-02 22:25:52 +00001471 if ((i == 2) && (dimm_number == 0)) {
1472 sa = dimm_params[dimm_number].base_address +
1473 2 * (rank_density >> dbw_cap_adj);
1474 ea = sa + 2 * (rank_density >> dbw_cap_adj) - 1;
1475 } else {
1476 sa = dimm_params[dimm_number].base_address;
1477 ea = sa + (2 * (rank_density >>
Haiying Wang272b5962008-10-03 12:36:39 -04001478 dbw_cap_adj)) - 1;
1479 }
1480 break;
1481 case FSL_DDR_CS0_CS1:
1482 /* CS0+CS1 interleaving, CS0_CNDS needs
1483 * to be set
1484 */
york93799ca2010-07-02 22:25:52 +00001485 if (dimm_params[dimm_number].n_ranks > (i % cs_per_dimm)) {
1486 sa = dimm_params[dimm_number].base_address;
1487 ea = sa + (rank_density >> dbw_cap_adj) - 1;
1488 sa += (i % cs_per_dimm) * (rank_density >> dbw_cap_adj);
1489 ea += (i % cs_per_dimm) * (rank_density >> dbw_cap_adj);
1490 } else {
1491 sa = 0;
1492 ea = 0;
1493 }
1494 if (i == 0)
1495 ea += (rank_density >> dbw_cap_adj);
Haiying Wang272b5962008-10-03 12:36:39 -04001496 break;
1497 case FSL_DDR_CS2_CS3:
1498 /* CS2+CS3 interleaving*/
york93799ca2010-07-02 22:25:52 +00001499 if (dimm_params[dimm_number].n_ranks > (i % cs_per_dimm)) {
1500 sa = dimm_params[dimm_number].base_address;
1501 ea = sa + (rank_density >> dbw_cap_adj) - 1;
1502 sa += (i % cs_per_dimm) * (rank_density >> dbw_cap_adj);
1503 ea += (i % cs_per_dimm) * (rank_density >> dbw_cap_adj);
1504 } else {
1505 sa = 0;
1506 ea = 0;
Haiying Wang272b5962008-10-03 12:36:39 -04001507 }
york93799ca2010-07-02 22:25:52 +00001508 if (i == 2)
1509 ea += (rank_density >> dbw_cap_adj);
Haiying Wang272b5962008-10-03 12:36:39 -04001510 break;
1511 default: /* No bank(chip-select) interleaving */
1512 break;
1513 }
Kumar Gala124b0822008-08-26 15:01:29 -05001514 }
1515 else if (popts->memctl_interleaving && !popts->ba_intlv_ctl) {
1516 /*
1517 * Only the rank on CS0 of each memory controller may
1518 * be used if memory controller interleaving is used
1519 * without rank interleaving within each memory
1520 * controller. However, the ending address programmed
1521 * into each CS0 must be the sum of the amount of
1522 * memory in the two CS0 ranks.
1523 */
1524 if (i == 0) {
Kumar Gala124b0822008-08-26 15:01:29 -05001525 ea = (2 * (rank_density >> dbw_cap_adj)) - 1;
1526 }
1527
1528 }
1529 else if (!popts->memctl_interleaving && !popts->ba_intlv_ctl) {
1530 /*
1531 * No rank interleaving and no memory controller
1532 * interleaving.
1533 */
york93799ca2010-07-02 22:25:52 +00001534 sa = dimm_params[dimm_number].base_address;
Kumar Gala124b0822008-08-26 15:01:29 -05001535 ea = sa + (rank_density >> dbw_cap_adj) - 1;
york93799ca2010-07-02 22:25:52 +00001536 if (dimm_params[dimm_number].n_ranks > (i % cs_per_dimm)) {
1537 sa += (i % cs_per_dimm) * (rank_density >> dbw_cap_adj);
1538 ea += (i % cs_per_dimm) * (rank_density >> dbw_cap_adj);
1539 } else {
1540 sa = 0;
1541 ea = 0;
Kumar Gala124b0822008-08-26 15:01:29 -05001542 }
1543 }
1544
1545 sa >>= 24;
1546 ea >>= 24;
1547
1548 ddr->cs[i].bnds = (0
1549 | ((sa & 0xFFF) << 16) /* starting address MSB */
1550 | ((ea & 0xFFF) << 0) /* ending address MSB */
1551 );
1552
Haiying Wangd90e0402008-10-03 12:37:26 -04001553 debug("FSLDDR: cs[%d]_bnds = 0x%08x\n", i, ddr->cs[i].bnds);
York Sun2927c5e2010-10-18 13:46:50 -07001554 if (cs_en) {
1555 set_csn_config(dimm_number, i, ddr, popts, dimm_params);
1556 set_csn_config_2(i, ddr);
1557 } else
1558 printf("CS%d is disabled.\n", i);
Kumar Gala124b0822008-08-26 15:01:29 -05001559 }
1560
Haiying Wang80ad4012010-12-01 10:35:31 -05001561 /*
1562 * In the case we only need to compute the ddr sdram size, we only need
1563 * to set csn registers, so return from here.
1564 */
1565 if (size_only)
1566 return 0;
1567
york42603722010-07-02 22:25:54 +00001568 set_ddr_eor(ddr, popts);
1569
Dave Liu4be87b22009-03-14 12:48:30 +08001570#if !defined(CONFIG_FSL_DDR1)
York Sunba0c2eb2011-01-10 12:03:00 +00001571 set_timing_cfg_0(ddr, popts);
Kumar Gala124b0822008-08-26 15:01:29 -05001572#endif
1573
Dave Liu4be87b22009-03-14 12:48:30 +08001574 set_timing_cfg_3(ddr, common_dimm, cas_latency);
1575 set_timing_cfg_1(ddr, popts, common_dimm, cas_latency);
Kumar Gala124b0822008-08-26 15:01:29 -05001576 set_timing_cfg_2(ddr, popts, common_dimm,
1577 cas_latency, additive_latency);
1578
York Sunba0c2eb2011-01-10 12:03:00 +00001579 set_ddr_cdr1(ddr, popts);
Kumar Gala124b0822008-08-26 15:01:29 -05001580 set_ddr_sdram_cfg(ddr, popts, common_dimm);
York Sunba0c2eb2011-01-10 12:03:00 +00001581 ip_rev = fsl_ddr_get_version();
1582 if (ip_rev > 0x40400)
1583 unq_mrs_en = 1;
Kumar Gala124b0822008-08-26 15:01:29 -05001584
York Sunba0c2eb2011-01-10 12:03:00 +00001585 set_ddr_sdram_cfg_2(ddr, popts, unq_mrs_en);
Kumar Gala124b0822008-08-26 15:01:29 -05001586 set_ddr_sdram_mode(ddr, popts, common_dimm,
York Sunba0c2eb2011-01-10 12:03:00 +00001587 cas_latency, additive_latency, unq_mrs_en);
1588 set_ddr_sdram_mode_2(ddr, popts, unq_mrs_en);
Kumar Gala124b0822008-08-26 15:01:29 -05001589 set_ddr_sdram_interval(ddr, popts, common_dimm);
1590 set_ddr_data_init(ddr);
1591 set_ddr_sdram_clk_cntl(ddr, popts);
1592 set_ddr_init_addr(ddr);
1593 set_ddr_init_ext_addr(ddr);
Dave Liu3525e1a2010-03-05 12:22:00 +08001594 set_timing_cfg_4(ddr, popts);
York Sunba0c2eb2011-01-10 12:03:00 +00001595 set_timing_cfg_5(ddr, cas_latency);
Kumar Gala124b0822008-08-26 15:01:29 -05001596
Dave Liu4be87b22009-03-14 12:48:30 +08001597 set_ddr_zq_cntl(ddr, zq_en);
Dave Liu64ee7df2009-12-16 10:24:37 -06001598 set_ddr_wrlvl_cntl(ddr, wrlvl_en, popts);
Kumar Gala124b0822008-08-26 15:01:29 -05001599
Dave Liu2aad0ae2008-11-21 16:31:35 +08001600 set_ddr_sr_cntr(ddr, sr_it);
Kumar Gala124b0822008-08-26 15:01:29 -05001601
York Sunba0c2eb2011-01-10 12:03:00 +00001602 set_ddr_sdram_rcw(ddr, popts, common_dimm);
Kumar Gala124b0822008-08-26 15:01:29 -05001603
1604 return check_fsl_memctl_config_regs(ddr);
1605}