blob: 4aafcceaf5939ae16e764a8619e2bd12e2367613 [file] [log] [blame]
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001/*
York Suna4c66502012-08-17 08:22:39 +00002 * Copyright 2008, 2010-2012 Freescale Semiconductor, Inc.
Kumar Gala58e5e9a2008-08-26 15:01:29 -05003 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Kumar Gala58e5e9a2008-08-26 15:01:29 -05005 */
6
7#include <common.h>
Kumar Gala79e4e642010-07-14 10:04:21 -05008#include <hwconfig.h>
York Sun5614e712013-09-30 09:22:09 -07009#include <fsl_ddr_sdram.h>
Kumar Gala58e5e9a2008-08-26 15:01:29 -050010
York Sun5614e712013-09-30 09:22:09 -070011#include <fsl_ddr.h>
Kumar Gala58e5e9a2008-08-26 15:01:29 -050012
Kumar Galadd50af22011-01-09 11:37:00 -060013/*
14 * Use our own stack based buffer before relocation to allow accessing longer
15 * hwconfig strings that might be in the environment before we've relocated.
16 * This is pretty fragile on both the use of stack and if the buffer is big
17 * enough. However we will get a warning from getenv_f for the later.
18 */
Kumar Galadd50af22011-01-09 11:37:00 -060019
Kumar Gala58e5e9a2008-08-26 15:01:29 -050020/* Board-specific functions defined in each board's ddr.c */
21extern void fsl_ddr_board_options(memctl_options_t *popts,
Haiying Wangdfb49102008-10-03 12:36:55 -040022 dimm_params_t *pdimm,
Kumar Gala58e5e9a2008-08-26 15:01:29 -050023 unsigned int ctrl_num);
24
York Sun4e573822011-08-26 11:32:43 -070025struct dynamic_odt {
York Sune1fd16b2011-01-10 12:03:00 +000026 unsigned int odt_rd_cfg;
27 unsigned int odt_wr_cfg;
28 unsigned int odt_rtt_norm;
29 unsigned int odt_rtt_wr;
York Sun4e573822011-08-26 11:32:43 -070030};
York Sune1fd16b2011-01-10 12:03:00 +000031
York Sun5614e712013-09-30 09:22:09 -070032#ifdef CONFIG_SYS_FSL_DDR3
York Sun4e573822011-08-26 11:32:43 -070033static const struct dynamic_odt single_Q[4] = {
York Sune1fd16b2011-01-10 12:03:00 +000034 { /* cs0 */
35 FSL_DDR_ODT_NEVER,
36 FSL_DDR_ODT_CS_AND_OTHER_DIMM,
37 DDR3_RTT_20_OHM,
38 DDR3_RTT_120_OHM
39 },
40 { /* cs1 */
41 FSL_DDR_ODT_NEVER,
42 FSL_DDR_ODT_NEVER, /* tied high */
43 DDR3_RTT_OFF,
44 DDR3_RTT_120_OHM
45 },
46 { /* cs2 */
47 FSL_DDR_ODT_NEVER,
48 FSL_DDR_ODT_CS_AND_OTHER_DIMM,
49 DDR3_RTT_20_OHM,
50 DDR3_RTT_120_OHM
51 },
52 { /* cs3 */
53 FSL_DDR_ODT_NEVER,
54 FSL_DDR_ODT_NEVER, /* tied high */
55 DDR3_RTT_OFF,
56 DDR3_RTT_120_OHM
57 }
58};
59
York Sun4e573822011-08-26 11:32:43 -070060static const struct dynamic_odt single_D[4] = {
York Sune1fd16b2011-01-10 12:03:00 +000061 { /* cs0 */
62 FSL_DDR_ODT_NEVER,
63 FSL_DDR_ODT_ALL,
64 DDR3_RTT_40_OHM,
65 DDR3_RTT_OFF
66 },
67 { /* cs1 */
68 FSL_DDR_ODT_NEVER,
69 FSL_DDR_ODT_NEVER,
70 DDR3_RTT_OFF,
71 DDR3_RTT_OFF
72 },
73 {0, 0, 0, 0},
74 {0, 0, 0, 0}
75};
76
York Sun4e573822011-08-26 11:32:43 -070077static const struct dynamic_odt single_S[4] = {
York Sune1fd16b2011-01-10 12:03:00 +000078 { /* cs0 */
79 FSL_DDR_ODT_NEVER,
80 FSL_DDR_ODT_ALL,
81 DDR3_RTT_40_OHM,
82 DDR3_RTT_OFF
83 },
84 {0, 0, 0, 0},
85 {0, 0, 0, 0},
86 {0, 0, 0, 0},
87};
88
York Sun4e573822011-08-26 11:32:43 -070089static const struct dynamic_odt dual_DD[4] = {
York Sune1fd16b2011-01-10 12:03:00 +000090 { /* cs0 */
91 FSL_DDR_ODT_NEVER,
92 FSL_DDR_ODT_SAME_DIMM,
93 DDR3_RTT_120_OHM,
94 DDR3_RTT_OFF
95 },
96 { /* cs1 */
97 FSL_DDR_ODT_OTHER_DIMM,
98 FSL_DDR_ODT_OTHER_DIMM,
99 DDR3_RTT_30_OHM,
100 DDR3_RTT_OFF
101 },
102 { /* cs2 */
103 FSL_DDR_ODT_NEVER,
104 FSL_DDR_ODT_SAME_DIMM,
105 DDR3_RTT_120_OHM,
106 DDR3_RTT_OFF
107 },
108 { /* cs3 */
109 FSL_DDR_ODT_OTHER_DIMM,
110 FSL_DDR_ODT_OTHER_DIMM,
111 DDR3_RTT_30_OHM,
112 DDR3_RTT_OFF
113 }
114};
115
York Sun4e573822011-08-26 11:32:43 -0700116static const struct dynamic_odt dual_DS[4] = {
York Sune1fd16b2011-01-10 12:03:00 +0000117 { /* cs0 */
118 FSL_DDR_ODT_NEVER,
119 FSL_DDR_ODT_SAME_DIMM,
120 DDR3_RTT_120_OHM,
121 DDR3_RTT_OFF
122 },
123 { /* cs1 */
124 FSL_DDR_ODT_OTHER_DIMM,
125 FSL_DDR_ODT_OTHER_DIMM,
126 DDR3_RTT_30_OHM,
127 DDR3_RTT_OFF
128 },
129 { /* cs2 */
130 FSL_DDR_ODT_OTHER_DIMM,
131 FSL_DDR_ODT_ALL,
132 DDR3_RTT_20_OHM,
133 DDR3_RTT_120_OHM
134 },
135 {0, 0, 0, 0}
136};
York Sun4e573822011-08-26 11:32:43 -0700137static const struct dynamic_odt dual_SD[4] = {
York Sune1fd16b2011-01-10 12:03:00 +0000138 { /* cs0 */
139 FSL_DDR_ODT_OTHER_DIMM,
140 FSL_DDR_ODT_ALL,
141 DDR3_RTT_20_OHM,
142 DDR3_RTT_120_OHM
143 },
144 {0, 0, 0, 0},
145 { /* cs2 */
146 FSL_DDR_ODT_NEVER,
147 FSL_DDR_ODT_SAME_DIMM,
148 DDR3_RTT_120_OHM,
149 DDR3_RTT_OFF
150 },
151 { /* cs3 */
152 FSL_DDR_ODT_OTHER_DIMM,
153 FSL_DDR_ODT_OTHER_DIMM,
154 DDR3_RTT_20_OHM,
155 DDR3_RTT_OFF
156 }
157};
158
York Sun4e573822011-08-26 11:32:43 -0700159static const struct dynamic_odt dual_SS[4] = {
York Sune1fd16b2011-01-10 12:03:00 +0000160 { /* cs0 */
161 FSL_DDR_ODT_OTHER_DIMM,
162 FSL_DDR_ODT_ALL,
163 DDR3_RTT_30_OHM,
164 DDR3_RTT_120_OHM
165 },
166 {0, 0, 0, 0},
167 { /* cs2 */
168 FSL_DDR_ODT_OTHER_DIMM,
169 FSL_DDR_ODT_ALL,
170 DDR3_RTT_30_OHM,
171 DDR3_RTT_120_OHM
172 },
173 {0, 0, 0, 0}
174};
175
York Sun4e573822011-08-26 11:32:43 -0700176static const struct dynamic_odt dual_D0[4] = {
York Sune1fd16b2011-01-10 12:03:00 +0000177 { /* cs0 */
178 FSL_DDR_ODT_NEVER,
179 FSL_DDR_ODT_SAME_DIMM,
180 DDR3_RTT_40_OHM,
181 DDR3_RTT_OFF
182 },
183 { /* cs1 */
184 FSL_DDR_ODT_NEVER,
185 FSL_DDR_ODT_NEVER,
186 DDR3_RTT_OFF,
187 DDR3_RTT_OFF
188 },
189 {0, 0, 0, 0},
190 {0, 0, 0, 0}
191};
192
York Sun4e573822011-08-26 11:32:43 -0700193static const struct dynamic_odt dual_0D[4] = {
York Sune1fd16b2011-01-10 12:03:00 +0000194 {0, 0, 0, 0},
195 {0, 0, 0, 0},
196 { /* cs2 */
197 FSL_DDR_ODT_NEVER,
198 FSL_DDR_ODT_SAME_DIMM,
199 DDR3_RTT_40_OHM,
200 DDR3_RTT_OFF
201 },
202 { /* cs3 */
203 FSL_DDR_ODT_NEVER,
204 FSL_DDR_ODT_NEVER,
205 DDR3_RTT_OFF,
206 DDR3_RTT_OFF
207 }
208};
209
York Sun4e573822011-08-26 11:32:43 -0700210static const struct dynamic_odt dual_S0[4] = {
York Sune1fd16b2011-01-10 12:03:00 +0000211 { /* cs0 */
212 FSL_DDR_ODT_NEVER,
213 FSL_DDR_ODT_CS,
214 DDR3_RTT_40_OHM,
215 DDR3_RTT_OFF
216 },
217 {0, 0, 0, 0},
218 {0, 0, 0, 0},
219 {0, 0, 0, 0}
220
221};
222
York Sun4e573822011-08-26 11:32:43 -0700223static const struct dynamic_odt dual_0S[4] = {
York Sune1fd16b2011-01-10 12:03:00 +0000224 {0, 0, 0, 0},
225 {0, 0, 0, 0},
226 { /* cs2 */
227 FSL_DDR_ODT_NEVER,
228 FSL_DDR_ODT_CS,
229 DDR3_RTT_40_OHM,
230 DDR3_RTT_OFF
231 },
232 {0, 0, 0, 0}
233
234};
235
York Sun4e573822011-08-26 11:32:43 -0700236static const struct dynamic_odt odt_unknown[4] = {
York Sune1fd16b2011-01-10 12:03:00 +0000237 { /* cs0 */
238 FSL_DDR_ODT_NEVER,
239 FSL_DDR_ODT_CS,
240 DDR3_RTT_120_OHM,
241 DDR3_RTT_OFF
242 },
243 { /* cs1 */
244 FSL_DDR_ODT_NEVER,
245 FSL_DDR_ODT_CS,
246 DDR3_RTT_120_OHM,
247 DDR3_RTT_OFF
248 },
249 { /* cs2 */
250 FSL_DDR_ODT_NEVER,
251 FSL_DDR_ODT_CS,
252 DDR3_RTT_120_OHM,
253 DDR3_RTT_OFF
254 },
255 { /* cs3 */
256 FSL_DDR_ODT_NEVER,
257 FSL_DDR_ODT_CS,
258 DDR3_RTT_120_OHM,
259 DDR3_RTT_OFF
260 }
261};
York Sun5614e712013-09-30 09:22:09 -0700262#else /* CONFIG_SYS_FSL_DDR3 */
York Sun4e573822011-08-26 11:32:43 -0700263static const struct dynamic_odt single_Q[4] = {
264 {0, 0, 0, 0},
265 {0, 0, 0, 0},
266 {0, 0, 0, 0},
267 {0, 0, 0, 0}
268};
York Sune1fd16b2011-01-10 12:03:00 +0000269
York Sun4e573822011-08-26 11:32:43 -0700270static const struct dynamic_odt single_D[4] = {
271 { /* cs0 */
272 FSL_DDR_ODT_NEVER,
273 FSL_DDR_ODT_ALL,
274 DDR2_RTT_150_OHM,
275 DDR2_RTT_OFF
276 },
277 { /* cs1 */
278 FSL_DDR_ODT_NEVER,
279 FSL_DDR_ODT_NEVER,
280 DDR2_RTT_OFF,
281 DDR2_RTT_OFF
282 },
283 {0, 0, 0, 0},
284 {0, 0, 0, 0}
285};
286
287static const struct dynamic_odt single_S[4] = {
288 { /* cs0 */
289 FSL_DDR_ODT_NEVER,
290 FSL_DDR_ODT_ALL,
291 DDR2_RTT_150_OHM,
292 DDR2_RTT_OFF
293 },
294 {0, 0, 0, 0},
295 {0, 0, 0, 0},
296 {0, 0, 0, 0},
297};
298
299static const struct dynamic_odt dual_DD[4] = {
300 { /* cs0 */
301 FSL_DDR_ODT_OTHER_DIMM,
302 FSL_DDR_ODT_OTHER_DIMM,
303 DDR2_RTT_75_OHM,
304 DDR2_RTT_OFF
305 },
306 { /* cs1 */
307 FSL_DDR_ODT_NEVER,
308 FSL_DDR_ODT_NEVER,
309 DDR2_RTT_OFF,
310 DDR2_RTT_OFF
311 },
312 { /* cs2 */
313 FSL_DDR_ODT_OTHER_DIMM,
314 FSL_DDR_ODT_OTHER_DIMM,
315 DDR2_RTT_75_OHM,
316 DDR2_RTT_OFF
317 },
318 { /* cs3 */
319 FSL_DDR_ODT_NEVER,
320 FSL_DDR_ODT_NEVER,
321 DDR2_RTT_OFF,
322 DDR2_RTT_OFF
323 }
324};
325
326static const struct dynamic_odt dual_DS[4] = {
327 { /* cs0 */
328 FSL_DDR_ODT_OTHER_DIMM,
329 FSL_DDR_ODT_OTHER_DIMM,
330 DDR2_RTT_75_OHM,
331 DDR2_RTT_OFF
332 },
333 { /* cs1 */
334 FSL_DDR_ODT_NEVER,
335 FSL_DDR_ODT_NEVER,
336 DDR2_RTT_OFF,
337 DDR2_RTT_OFF
338 },
339 { /* cs2 */
340 FSL_DDR_ODT_OTHER_DIMM,
341 FSL_DDR_ODT_OTHER_DIMM,
342 DDR2_RTT_75_OHM,
343 DDR2_RTT_OFF
344 },
345 {0, 0, 0, 0}
346};
347
348static const struct dynamic_odt dual_SD[4] = {
349 { /* cs0 */
350 FSL_DDR_ODT_OTHER_DIMM,
351 FSL_DDR_ODT_OTHER_DIMM,
352 DDR2_RTT_75_OHM,
353 DDR2_RTT_OFF
354 },
355 {0, 0, 0, 0},
356 { /* cs2 */
357 FSL_DDR_ODT_OTHER_DIMM,
358 FSL_DDR_ODT_OTHER_DIMM,
359 DDR2_RTT_75_OHM,
360 DDR2_RTT_OFF
361 },
362 { /* cs3 */
363 FSL_DDR_ODT_NEVER,
364 FSL_DDR_ODT_NEVER,
365 DDR2_RTT_OFF,
366 DDR2_RTT_OFF
367 }
368};
369
370static const struct dynamic_odt dual_SS[4] = {
371 { /* cs0 */
372 FSL_DDR_ODT_OTHER_DIMM,
373 FSL_DDR_ODT_OTHER_DIMM,
374 DDR2_RTT_75_OHM,
375 DDR2_RTT_OFF
376 },
377 {0, 0, 0, 0},
378 { /* cs2 */
379 FSL_DDR_ODT_OTHER_DIMM,
380 FSL_DDR_ODT_OTHER_DIMM,
381 DDR2_RTT_75_OHM,
382 DDR2_RTT_OFF
383 },
384 {0, 0, 0, 0}
385};
386
387static const struct dynamic_odt dual_D0[4] = {
388 { /* cs0 */
389 FSL_DDR_ODT_NEVER,
390 FSL_DDR_ODT_ALL,
391 DDR2_RTT_150_OHM,
392 DDR2_RTT_OFF
393 },
394 { /* cs1 */
395 FSL_DDR_ODT_NEVER,
396 FSL_DDR_ODT_NEVER,
397 DDR2_RTT_OFF,
398 DDR2_RTT_OFF
399 },
400 {0, 0, 0, 0},
401 {0, 0, 0, 0}
402};
403
404static const struct dynamic_odt dual_0D[4] = {
405 {0, 0, 0, 0},
406 {0, 0, 0, 0},
407 { /* cs2 */
408 FSL_DDR_ODT_NEVER,
409 FSL_DDR_ODT_ALL,
410 DDR2_RTT_150_OHM,
411 DDR2_RTT_OFF
412 },
413 { /* cs3 */
414 FSL_DDR_ODT_NEVER,
415 FSL_DDR_ODT_NEVER,
416 DDR2_RTT_OFF,
417 DDR2_RTT_OFF
418 }
419};
420
421static const struct dynamic_odt dual_S0[4] = {
422 { /* cs0 */
423 FSL_DDR_ODT_NEVER,
424 FSL_DDR_ODT_CS,
425 DDR2_RTT_150_OHM,
426 DDR2_RTT_OFF
427 },
428 {0, 0, 0, 0},
429 {0, 0, 0, 0},
430 {0, 0, 0, 0}
431
432};
433
434static const struct dynamic_odt dual_0S[4] = {
435 {0, 0, 0, 0},
436 {0, 0, 0, 0},
437 { /* cs2 */
438 FSL_DDR_ODT_NEVER,
439 FSL_DDR_ODT_CS,
440 DDR2_RTT_150_OHM,
441 DDR2_RTT_OFF
442 },
443 {0, 0, 0, 0}
444
445};
446
447static const struct dynamic_odt odt_unknown[4] = {
448 { /* cs0 */
449 FSL_DDR_ODT_NEVER,
450 FSL_DDR_ODT_CS,
451 DDR2_RTT_75_OHM,
452 DDR2_RTT_OFF
453 },
454 { /* cs1 */
455 FSL_DDR_ODT_NEVER,
456 FSL_DDR_ODT_NEVER,
457 DDR2_RTT_OFF,
458 DDR2_RTT_OFF
459 },
460 { /* cs2 */
461 FSL_DDR_ODT_NEVER,
462 FSL_DDR_ODT_CS,
463 DDR2_RTT_75_OHM,
464 DDR2_RTT_OFF
465 },
466 { /* cs3 */
467 FSL_DDR_ODT_NEVER,
468 FSL_DDR_ODT_NEVER,
469 DDR2_RTT_OFF,
470 DDR2_RTT_OFF
471 }
472};
473#endif
York Sun89b78092012-10-08 07:44:27 +0000474
475/*
476 * Automatically seleect bank interleaving mode based on DIMMs
477 * in this order: cs0_cs1_cs2_cs3, cs0_cs1, null.
478 * This function only deal with one or two slots per controller.
479 */
480static inline unsigned int auto_bank_intlv(dimm_params_t *pdimm)
481{
482#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
483 if (pdimm[0].n_ranks == 4)
484 return FSL_DDR_CS0_CS1_CS2_CS3;
485 else if (pdimm[0].n_ranks == 2)
486 return FSL_DDR_CS0_CS1;
487#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
488#ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
489 if (pdimm[0].n_ranks == 4)
490 return FSL_DDR_CS0_CS1_CS2_CS3;
491#endif
492 if (pdimm[0].n_ranks == 2) {
493 if (pdimm[1].n_ranks == 2)
494 return FSL_DDR_CS0_CS1_CS2_CS3;
495 else
496 return FSL_DDR_CS0_CS1;
497 }
498#endif
499 return 0;
500}
501
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530502unsigned int populate_memctl_options(int all_dimms_registered,
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500503 memctl_options_t *popts,
Haiying Wangdfb49102008-10-03 12:36:55 -0400504 dimm_params_t *pdimm,
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500505 unsigned int ctrl_num)
506{
507 unsigned int i;
Kumar Galadd50af22011-01-09 11:37:00 -0600508 char buffer[HWCONFIG_BUFFER_SIZE];
509 char *buf = NULL;
York Sun5614e712013-09-30 09:22:09 -0700510#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR2)
York Sun4e573822011-08-26 11:32:43 -0700511 const struct dynamic_odt *pdodt = odt_unknown;
Kumar Gala667bc172011-11-09 10:05:21 -0600512#endif
York Suncda1de22011-08-24 09:40:26 -0700513 ulong ddr_freq;
Kumar Galadd50af22011-01-09 11:37:00 -0600514
515 /*
516 * Extract hwconfig from environment since we have not properly setup
517 * the environment but need it for ddr config params
518 */
519 if (getenv_f("hwconfig", buffer, sizeof(buffer)) > 0)
520 buf = buffer;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500521
York Sun5614e712013-09-30 09:22:09 -0700522#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR2)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500523 /* Chip select options. */
York Sune1fd16b2011-01-10 12:03:00 +0000524 if (CONFIG_DIMM_SLOTS_PER_CTLR == 1) {
525 switch (pdimm[0].n_ranks) {
526 case 1:
527 pdodt = single_S;
528 break;
529 case 2:
530 pdodt = single_D;
531 break;
532 case 4:
533 pdodt = single_Q;
534 break;
535 }
536 } else if (CONFIG_DIMM_SLOTS_PER_CTLR == 2) {
537 switch (pdimm[0].n_ranks) {
York Sun123922b2012-10-08 07:44:23 +0000538#ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
539 case 4:
540 pdodt = single_Q;
541 if (pdimm[1].n_ranks)
542 printf("Error: Quad- and Dual-rank DIMMs "
543 "cannot be used together\n");
544 break;
545#endif
York Sune1fd16b2011-01-10 12:03:00 +0000546 case 2:
547 switch (pdimm[1].n_ranks) {
548 case 2:
549 pdodt = dual_DD;
550 break;
551 case 1:
552 pdodt = dual_DS;
553 break;
554 case 0:
555 pdodt = dual_D0;
556 break;
557 }
558 break;
559 case 1:
560 switch (pdimm[1].n_ranks) {
561 case 2:
562 pdodt = dual_SD;
563 break;
564 case 1:
565 pdodt = dual_SS;
566 break;
567 case 0:
568 pdodt = dual_S0;
569 break;
570 }
571 break;
572 case 0:
573 switch (pdimm[1].n_ranks) {
574 case 2:
575 pdodt = dual_0D;
576 break;
577 case 1:
578 pdodt = dual_0S;
579 break;
580 }
581 break;
582 }
583 }
Kumar Gala667bc172011-11-09 10:05:21 -0600584#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500585
586 /* Pick chip-select local options. */
587 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
York Sun5614e712013-09-30 09:22:09 -0700588#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR2)
York Sune1fd16b2011-01-10 12:03:00 +0000589 popts->cs_local_opts[i].odt_rd_cfg = pdodt[i].odt_rd_cfg;
590 popts->cs_local_opts[i].odt_wr_cfg = pdodt[i].odt_wr_cfg;
591 popts->cs_local_opts[i].odt_rtt_norm = pdodt[i].odt_rtt_norm;
592 popts->cs_local_opts[i].odt_rtt_wr = pdodt[i].odt_rtt_wr;
593#else
594 popts->cs_local_opts[i].odt_rd_cfg = FSL_DDR_ODT_NEVER;
595 popts->cs_local_opts[i].odt_wr_cfg = FSL_DDR_ODT_CS;
596#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500597 popts->cs_local_opts[i].auto_precharge = 0;
598 }
599
600 /* Pick interleaving mode. */
601
602 /*
603 * 0 = no interleaving
604 * 1 = interleaving between 2 controllers
605 */
606 popts->memctl_interleaving = 0;
607
608 /*
609 * 0 = cacheline
610 * 1 = page
611 * 2 = (logical) bank
612 * 3 = superbank (only if CS interleaving is enabled)
613 */
614 popts->memctl_interleaving_mode = 0;
615
616 /*
617 * 0: cacheline: bit 30 of the 36-bit physical addr selects the memctl
618 * 1: page: bit to the left of the column bits selects the memctl
619 * 2: bank: bit to the left of the bank bits selects the memctl
620 * 3: superbank: bit to the left of the chip select selects the memctl
621 *
622 * NOTE: ba_intlv (rank interleaving) is independent of memory
623 * controller interleaving; it is only within a memory controller.
624 * Must use superbank interleaving if rank interleaving is used and
625 * memory controller interleaving is enabled.
626 */
627
628 /*
629 * 0 = no
630 * 0x40 = CS0,CS1
631 * 0x20 = CS2,CS3
632 * 0x60 = CS0,CS1 + CS2,CS3
633 * 0x04 = CS0,CS1,CS2,CS3
634 */
635 popts->ba_intlv_ctl = 0;
636
637 /* Memory Organization Parameters */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530638 popts->registered_dimm_en = all_dimms_registered;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500639
640 /* Operational Mode Paramters */
641
642 /* Pick ECC modes */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530643 popts->ecc_mode = 0; /* 0 = disabled, 1 = enabled */
York Sun47df8f02011-01-10 12:02:57 +0000644#ifdef CONFIG_DDR_ECC
645 if (hwconfig_sub_f("fsl_ddr", "ecc", buf)) {
646 if (hwconfig_subarg_cmp_f("fsl_ddr", "ecc", "on", buf))
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530647 popts->ecc_mode = 1;
York Sun47df8f02011-01-10 12:02:57 +0000648 } else
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530649 popts->ecc_mode = 1;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500650#endif
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530651 popts->ecc_init_using_memctl = 1; /* 0 = use DMA, 1 = use memctl */
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500652
653 /*
654 * Choose DQS config
655 * 0 for DDR1
656 * 1 for DDR2
657 */
York Sun5614e712013-09-30 09:22:09 -0700658#if defined(CONFIG_SYS_FSL_DDR1)
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530659 popts->dqs_config = 0;
York Sun5614e712013-09-30 09:22:09 -0700660#elif defined(CONFIG_SYS_FSL_DDR2) || defined(CONFIG_SYS_FSL_DDR3)
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530661 popts->dqs_config = 1;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500662#endif
663
664 /* Choose self-refresh during sleep. */
665 popts->self_refresh_in_sleep = 1;
666
667 /* Choose dynamic power management mode. */
668 popts->dynamic_power = 0;
669
York Sune090aa72011-05-27 07:25:48 +0800670 /*
671 * check first dimm for primary sdram width
672 * presuming all dimms are similar
673 * 0 = 64-bit, 1 = 32-bit, 2 = 16-bit
674 */
York Sun5614e712013-09-30 09:22:09 -0700675#if defined(CONFIG_SYS_FSL_DDR1) || defined(CONFIG_SYS_FSL_DDR2)
York Sun4c99cb92011-06-27 13:35:25 -0700676 if (pdimm[0].n_ranks != 0) {
677 if ((pdimm[0].data_width >= 64) && \
678 (pdimm[0].data_width <= 72))
679 popts->data_bus_width = 0;
680 else if ((pdimm[0].data_width >= 32) || \
681 (pdimm[0].data_width <= 40))
682 popts->data_bus_width = 1;
683 else {
684 panic("Error: data width %u is invalid!\n",
685 pdimm[0].data_width);
686 }
687 }
688#else
689 if (pdimm[0].n_ranks != 0) {
690 if (pdimm[0].primary_sdram_width == 64)
691 popts->data_bus_width = 0;
692 else if (pdimm[0].primary_sdram_width == 32)
693 popts->data_bus_width = 1;
694 else if (pdimm[0].primary_sdram_width == 16)
695 popts->data_bus_width = 2;
696 else {
697 panic("Error: primary sdram width %u is invalid!\n",
698 pdimm[0].primary_sdram_width);
699 }
700 }
701#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500702
York Sunb61e0612013-06-25 11:37:47 -0700703 popts->x4_en = (pdimm[0].device_width == 4) ? 1 : 0;
704
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500705 /* Choose burst length. */
York Sun5614e712013-09-30 09:22:09 -0700706#if defined(CONFIG_SYS_FSL_DDR3)
Dave Liu22c9de02010-03-05 12:22:00 +0800707#if defined(CONFIG_E500MC)
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530708 popts->otf_burst_chop_en = 0; /* on-the-fly burst chop disable */
Dave Liu22c9de02010-03-05 12:22:00 +0800709 popts->burst_length = DDR_BL8; /* Fixed 8-beat burst len */
710#else
York Sun51d498f2011-05-27 07:25:51 +0800711 if ((popts->data_bus_width == 1) || (popts->data_bus_width == 2)) {
712 /* 32-bit or 16-bit bus */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530713 popts->otf_burst_chop_en = 0;
York Sune090aa72011-05-27 07:25:48 +0800714 popts->burst_length = DDR_BL8;
715 } else {
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530716 popts->otf_burst_chop_en = 1; /* on-the-fly burst chop */
York Sune090aa72011-05-27 07:25:48 +0800717 popts->burst_length = DDR_OTF; /* on-the-fly BC4 and BL8 */
718 }
Dave Liu22c9de02010-03-05 12:22:00 +0800719#endif
Dave Liuc360cea2009-03-14 12:48:30 +0800720#else
721 popts->burst_length = DDR_BL4; /* has to be 4 for DDR2 */
722#endif
723
724 /* Choose ddr controller address mirror mode */
York Sun5614e712013-09-30 09:22:09 -0700725#if defined(CONFIG_SYS_FSL_DDR3)
Dave Liuc360cea2009-03-14 12:48:30 +0800726 popts->mirrored_dimm = pdimm[0].mirrored_dimm;
727#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500728
729 /* Global Timing Parameters. */
730 debug("mclk_ps = %u ps\n", get_memory_clk_period_ps());
731
732 /* Pick a caslat override. */
733 popts->cas_latency_override = 0;
734 popts->cas_latency_override_value = 3;
735 if (popts->cas_latency_override) {
736 debug("using caslat override value = %u\n",
737 popts->cas_latency_override_value);
738 }
739
740 /* Decide whether to use the computed derated latency */
741 popts->use_derated_caslat = 0;
742
743 /* Choose an additive latency. */
744 popts->additive_latency_override = 0;
745 popts->additive_latency_override_value = 3;
746 if (popts->additive_latency_override) {
747 debug("using additive latency override value = %u\n",
748 popts->additive_latency_override_value);
749 }
750
751 /*
752 * 2T_EN setting
753 *
754 * Factors to consider for 2T_EN:
755 * - number of DIMMs installed
756 * - number of components, number of active ranks
757 * - how much time you want to spend playing around
758 */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530759 popts->twot_en = 0;
760 popts->threet_en = 0;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500761
York Sune1fd16b2011-01-10 12:03:00 +0000762 /* for RDIMM, address parity enable */
763 popts->ap_en = 1;
764
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500765 /*
766 * BSTTOPRE precharge interval
767 *
768 * Set this to 0 for global auto precharge
769 *
770 * FIXME: Should this be configured in picoseconds?
771 * Why it should be in ps: better understanding of this
772 * relative to actual DRAM timing parameters such as tRAS.
773 * e.g. tRAS(min) = 40 ns
774 */
775 popts->bstopre = 0x100;
776
777 /* Minimum CKE pulse width -- tCKE(MIN) */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530778 popts->tcke_clock_pulse_width_ps
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500779 = mclk_to_picos(FSL_DDR_MIN_TCKE_PULSE_WIDTH_DDR);
780
781 /*
782 * Window for four activates -- tFAW
783 *
784 * FIXME: UM: applies only to DDR2/DDR3 with eight logical banks only
785 * FIXME: varies depending upon number of column addresses or data
786 * FIXME: width, was considering looking at pdimm->primary_sdram_width
787 */
York Sun5614e712013-09-30 09:22:09 -0700788#if defined(CONFIG_SYS_FSL_DDR1)
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530789 popts->tfaw_window_four_activates_ps = mclk_to_picos(1);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500790
York Sun5614e712013-09-30 09:22:09 -0700791#elif defined(CONFIG_SYS_FSL_DDR2)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500792 /*
793 * x4/x8; some datasheets have 35000
794 * x16 wide columns only? Use 50000?
795 */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530796 popts->tfaw_window_four_activates_ps = 37500;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500797
York Sun5614e712013-09-30 09:22:09 -0700798#elif defined(CONFIG_SYS_FSL_DDR3)
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530799 popts->tfaw_window_four_activates_ps = pdimm[0].tfaw_ps;
Dave Liuc360cea2009-03-14 12:48:30 +0800800#endif
801 popts->zq_en = 0;
802 popts->wrlvl_en = 0;
York Sun5614e712013-09-30 09:22:09 -0700803#if defined(CONFIG_SYS_FSL_DDR3)
Dave Liuc360cea2009-03-14 12:48:30 +0800804 /*
805 * due to ddr3 dimm is fly-by topology
806 * we suggest to enable write leveling to
807 * meet the tQDSS under different loading.
808 */
809 popts->wrlvl_en = 1;
york5fb8a8a2010-07-02 22:25:56 +0000810 popts->zq_en = 1;
Dave Liubdc9f7b2009-12-16 10:24:37 -0600811 popts->wrlvl_override = 0;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500812#endif
813
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500814 /*
Haiying Wangc9ffd832008-10-03 12:37:10 -0400815 * Check interleaving configuration from environment.
816 * Please refer to doc/README.fsl-ddr for the detail.
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500817 *
818 * If memory controller interleaving is enabled, then the data
york076bff82010-07-02 22:25:52 +0000819 * bus widths must be programmed identically for all memory controllers.
Haiying Wangc9ffd832008-10-03 12:37:10 -0400820 *
york076bff82010-07-02 22:25:52 +0000821 * XXX: Attempt to set all controllers to the same chip select
Haiying Wangc9ffd832008-10-03 12:37:10 -0400822 * interleaving mode. It will do a best effort to get the
823 * requested ranks interleaved together such that the result
824 * should be a subset of the requested configuration.
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500825 */
Kumar Gala1542fbd2009-02-06 09:56:34 -0600826#if (CONFIG_NUM_DDR_CONTROLLERS > 1)
York Suna4c66502012-08-17 08:22:39 +0000827 if (!hwconfig_sub_f("fsl_ddr", "ctlr_intlv", buf))
828 goto done;
829
830 if (pdimm[0].n_ranks == 0) {
831 printf("There is no rank on CS0 for controller %d.\n", ctrl_num);
832 popts->memctl_interleaving = 0;
833 goto done;
Haiying Wangc9ffd832008-10-03 12:37:10 -0400834 }
York Suna4c66502012-08-17 08:22:39 +0000835 popts->memctl_interleaving = 1;
836 /*
837 * test null first. if CONFIG_HWCONFIG is not defined
838 * hwconfig_arg_cmp returns non-zero
839 */
840 if (hwconfig_subarg_cmp_f("fsl_ddr", "ctlr_intlv",
841 "null", buf)) {
842 popts->memctl_interleaving = 0;
843 debug("memory controller interleaving disabled.\n");
844 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
845 "ctlr_intlv",
846 "cacheline", buf)) {
847 popts->memctl_interleaving_mode =
848 ((CONFIG_NUM_DDR_CONTROLLERS == 3) && ctrl_num == 2) ?
849 0 : FSL_DDR_CACHE_LINE_INTERLEAVING;
850 popts->memctl_interleaving =
851 ((CONFIG_NUM_DDR_CONTROLLERS == 3) && ctrl_num == 2) ?
852 0 : 1;
853 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
854 "ctlr_intlv",
855 "page", buf)) {
856 popts->memctl_interleaving_mode =
857 ((CONFIG_NUM_DDR_CONTROLLERS == 3) && ctrl_num == 2) ?
858 0 : FSL_DDR_PAGE_INTERLEAVING;
859 popts->memctl_interleaving =
860 ((CONFIG_NUM_DDR_CONTROLLERS == 3) && ctrl_num == 2) ?
861 0 : 1;
862 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
863 "ctlr_intlv",
864 "bank", buf)) {
865 popts->memctl_interleaving_mode =
866 ((CONFIG_NUM_DDR_CONTROLLERS == 3) && ctrl_num == 2) ?
867 0 : FSL_DDR_BANK_INTERLEAVING;
868 popts->memctl_interleaving =
869 ((CONFIG_NUM_DDR_CONTROLLERS == 3) && ctrl_num == 2) ?
870 0 : 1;
871 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
872 "ctlr_intlv",
873 "superbank", buf)) {
874 popts->memctl_interleaving_mode =
875 ((CONFIG_NUM_DDR_CONTROLLERS == 3) && ctrl_num == 2) ?
876 0 : FSL_DDR_SUPERBANK_INTERLEAVING;
877 popts->memctl_interleaving =
878 ((CONFIG_NUM_DDR_CONTROLLERS == 3) && ctrl_num == 2) ?
879 0 : 1;
880#if (CONFIG_NUM_DDR_CONTROLLERS == 3)
881 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
882 "ctlr_intlv",
883 "3way_1KB", buf)) {
884 popts->memctl_interleaving_mode =
885 FSL_DDR_3WAY_1KB_INTERLEAVING;
886 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
887 "ctlr_intlv",
888 "3way_4KB", buf)) {
889 popts->memctl_interleaving_mode =
890 FSL_DDR_3WAY_4KB_INTERLEAVING;
891 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
892 "ctlr_intlv",
893 "3way_8KB", buf)) {
894 popts->memctl_interleaving_mode =
895 FSL_DDR_3WAY_8KB_INTERLEAVING;
896#elif (CONFIG_NUM_DDR_CONTROLLERS == 4)
897 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
898 "ctlr_intlv",
899 "4way_1KB", buf)) {
900 popts->memctl_interleaving_mode =
901 FSL_DDR_4WAY_1KB_INTERLEAVING;
902 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
903 "ctlr_intlv",
904 "4way_4KB", buf)) {
905 popts->memctl_interleaving_mode =
906 FSL_DDR_4WAY_4KB_INTERLEAVING;
907 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
908 "ctlr_intlv",
909 "4way_8KB", buf)) {
910 popts->memctl_interleaving_mode =
911 FSL_DDR_4WAY_8KB_INTERLEAVING;
912#endif
913 } else {
914 popts->memctl_interleaving = 0;
915 printf("hwconfig has unrecognized parameter for ctlr_intlv.\n");
916 }
917done:
Dave Liu3ad95de2009-11-12 07:26:37 +0800918#endif
Kumar Galadd50af22011-01-09 11:37:00 -0600919 if ((hwconfig_sub_f("fsl_ddr", "bank_intlv", buf)) &&
Dave Liu3ad95de2009-11-12 07:26:37 +0800920 (CONFIG_CHIP_SELECTS_PER_CTRL > 1)) {
Kumar Gala79e4e642010-07-14 10:04:21 -0500921 /* test null first. if CONFIG_HWCONFIG is not defined,
Kumar Galadd50af22011-01-09 11:37:00 -0600922 * hwconfig_subarg_cmp_f returns non-zero */
923 if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
924 "null", buf))
york076bff82010-07-02 22:25:52 +0000925 debug("bank interleaving disabled.\n");
Kumar Galadd50af22011-01-09 11:37:00 -0600926 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
927 "cs0_cs1", buf))
Haiying Wangc9ffd832008-10-03 12:37:10 -0400928 popts->ba_intlv_ctl = FSL_DDR_CS0_CS1;
Kumar Galadd50af22011-01-09 11:37:00 -0600929 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
930 "cs2_cs3", buf))
Haiying Wangc9ffd832008-10-03 12:37:10 -0400931 popts->ba_intlv_ctl = FSL_DDR_CS2_CS3;
Kumar Galadd50af22011-01-09 11:37:00 -0600932 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
933 "cs0_cs1_and_cs2_cs3", buf))
Haiying Wangc9ffd832008-10-03 12:37:10 -0400934 popts->ba_intlv_ctl = FSL_DDR_CS0_CS1_AND_CS2_CS3;
Kumar Galadd50af22011-01-09 11:37:00 -0600935 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
936 "cs0_cs1_cs2_cs3", buf))
Haiying Wangc9ffd832008-10-03 12:37:10 -0400937 popts->ba_intlv_ctl = FSL_DDR_CS0_CS1_CS2_CS3;
York Sun89b78092012-10-08 07:44:27 +0000938 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
939 "auto", buf))
940 popts->ba_intlv_ctl = auto_bank_intlv(pdimm);
Haiying Wangc9ffd832008-10-03 12:37:10 -0400941 else
york076bff82010-07-02 22:25:52 +0000942 printf("hwconfig has unrecognized parameter for bank_intlv.\n");
Haiying Wangc9ffd832008-10-03 12:37:10 -0400943 switch (popts->ba_intlv_ctl & FSL_DDR_CS0_CS1_CS2_CS3) {
944 case FSL_DDR_CS0_CS1_CS2_CS3:
york076bff82010-07-02 22:25:52 +0000945#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
york5800e7a2010-07-02 22:25:53 +0000946 if (pdimm[0].n_ranks < 4) {
york076bff82010-07-02 22:25:52 +0000947 popts->ba_intlv_ctl = 0;
948 printf("Not enough bank(chip-select) for "
949 "CS0+CS1+CS2+CS3 on controller %d, "
York Suna4c66502012-08-17 08:22:39 +0000950 "interleaving disabled!\n", ctrl_num);
york076bff82010-07-02 22:25:52 +0000951 }
952#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
York Sun123922b2012-10-08 07:44:23 +0000953#ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
954 if (pdimm[0].n_ranks == 4)
955 break;
956#endif
york5800e7a2010-07-02 22:25:53 +0000957 if ((pdimm[0].n_ranks < 2) && (pdimm[1].n_ranks < 2)) {
york076bff82010-07-02 22:25:52 +0000958 popts->ba_intlv_ctl = 0;
959 printf("Not enough bank(chip-select) for "
960 "CS0+CS1+CS2+CS3 on controller %d, "
York Suna4c66502012-08-17 08:22:39 +0000961 "interleaving disabled!\n", ctrl_num);
york076bff82010-07-02 22:25:52 +0000962 }
963 if (pdimm[0].capacity != pdimm[1].capacity) {
964 popts->ba_intlv_ctl = 0;
965 printf("Not identical DIMM size for "
966 "CS0+CS1+CS2+CS3 on controller %d, "
York Suna4c66502012-08-17 08:22:39 +0000967 "interleaving disabled!\n", ctrl_num);
york076bff82010-07-02 22:25:52 +0000968 }
969#endif
970 break;
Haiying Wangc9ffd832008-10-03 12:37:10 -0400971 case FSL_DDR_CS0_CS1:
york5800e7a2010-07-02 22:25:53 +0000972 if (pdimm[0].n_ranks < 2) {
Haiying Wangc9ffd832008-10-03 12:37:10 -0400973 popts->ba_intlv_ctl = 0;
Ed Swarthout7008d262008-10-29 09:21:44 -0500974 printf("Not enough bank(chip-select) for "
york076bff82010-07-02 22:25:52 +0000975 "CS0+CS1 on controller %d, "
York Suna4c66502012-08-17 08:22:39 +0000976 "interleaving disabled!\n", ctrl_num);
Haiying Wangc9ffd832008-10-03 12:37:10 -0400977 }
978 break;
979 case FSL_DDR_CS2_CS3:
york076bff82010-07-02 22:25:52 +0000980#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
york5800e7a2010-07-02 22:25:53 +0000981 if (pdimm[0].n_ranks < 4) {
Haiying Wangc9ffd832008-10-03 12:37:10 -0400982 popts->ba_intlv_ctl = 0;
york076bff82010-07-02 22:25:52 +0000983 printf("Not enough bank(chip-select) for CS2+CS3 "
York Suna4c66502012-08-17 08:22:39 +0000984 "on controller %d, interleaving disabled!\n", ctrl_num);
Haiying Wangc9ffd832008-10-03 12:37:10 -0400985 }
york076bff82010-07-02 22:25:52 +0000986#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
york5800e7a2010-07-02 22:25:53 +0000987 if (pdimm[1].n_ranks < 2) {
york076bff82010-07-02 22:25:52 +0000988 popts->ba_intlv_ctl = 0;
989 printf("Not enough bank(chip-select) for CS2+CS3 "
York Suna4c66502012-08-17 08:22:39 +0000990 "on controller %d, interleaving disabled!\n", ctrl_num);
york076bff82010-07-02 22:25:52 +0000991 }
992#endif
Haiying Wangc9ffd832008-10-03 12:37:10 -0400993 break;
994 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
york076bff82010-07-02 22:25:52 +0000995#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
york5800e7a2010-07-02 22:25:53 +0000996 if (pdimm[0].n_ranks < 4) {
york076bff82010-07-02 22:25:52 +0000997 popts->ba_intlv_ctl = 0;
998 printf("Not enough bank(CS) for CS0+CS1 and "
999 "CS2+CS3 on controller %d, "
York Suna4c66502012-08-17 08:22:39 +00001000 "interleaving disabled!\n", ctrl_num);
york076bff82010-07-02 22:25:52 +00001001 }
1002#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
york5800e7a2010-07-02 22:25:53 +00001003 if ((pdimm[0].n_ranks < 2) || (pdimm[1].n_ranks < 2)) {
Haiying Wangc9ffd832008-10-03 12:37:10 -04001004 popts->ba_intlv_ctl = 0;
york076bff82010-07-02 22:25:52 +00001005 printf("Not enough bank(CS) for CS0+CS1 and "
1006 "CS2+CS3 on controller %d, "
York Suna4c66502012-08-17 08:22:39 +00001007 "interleaving disabled!\n", ctrl_num);
Haiying Wangc9ffd832008-10-03 12:37:10 -04001008 }
york076bff82010-07-02 22:25:52 +00001009#endif
Haiying Wangc9ffd832008-10-03 12:37:10 -04001010 break;
1011 default:
1012 popts->ba_intlv_ctl = 0;
1013 break;
1014 }
1015 }
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001016
Kumar Galadd50af22011-01-09 11:37:00 -06001017 if (hwconfig_sub_f("fsl_ddr", "addr_hash", buf)) {
1018 if (hwconfig_subarg_cmp_f("fsl_ddr", "addr_hash", "null", buf))
york7fd101c2010-07-02 22:25:54 +00001019 popts->addr_hash = 0;
Kumar Galadd50af22011-01-09 11:37:00 -06001020 else if (hwconfig_subarg_cmp_f("fsl_ddr", "addr_hash",
1021 "true", buf))
york7fd101c2010-07-02 22:25:54 +00001022 popts->addr_hash = 1;
1023 }
1024
york5800e7a2010-07-02 22:25:53 +00001025 if (pdimm[0].n_ranks == 4)
1026 popts->quad_rank_present = 1;
1027
York Suncda1de22011-08-24 09:40:26 -07001028 ddr_freq = get_ddr_freq(0) / 1000000;
1029 if (popts->registered_dimm_en) {
1030 popts->rcw_override = 1;
1031 popts->rcw_1 = 0x000a5a00;
1032 if (ddr_freq <= 800)
1033 popts->rcw_2 = 0x00000000;
1034 else if (ddr_freq <= 1066)
1035 popts->rcw_2 = 0x00100000;
1036 else if (ddr_freq <= 1333)
1037 popts->rcw_2 = 0x00200000;
1038 else
1039 popts->rcw_2 = 0x00300000;
1040 }
1041
Haiying Wangdfb49102008-10-03 12:36:55 -04001042 fsl_ddr_board_options(popts, pdimm, ctrl_num);
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001043
1044 return 0;
1045}
york076bff82010-07-02 22:25:52 +00001046
1047void check_interleaving_options(fsl_ddr_info_t *pinfo)
1048{
York Suna4c66502012-08-17 08:22:39 +00001049 int i, j, k, check_n_ranks, intlv_invalid = 0;
1050 unsigned int check_intlv, check_n_row_addr, check_n_col_addr;
york076bff82010-07-02 22:25:52 +00001051 unsigned long long check_rank_density;
York Suna4c66502012-08-17 08:22:39 +00001052 struct dimm_params_s *dimm;
york076bff82010-07-02 22:25:52 +00001053 /*
1054 * Check if all controllers are configured for memory
1055 * controller interleaving. Identical dimms are recommended. At least
York Suna4c66502012-08-17 08:22:39 +00001056 * the size, row and col address should be checked.
york076bff82010-07-02 22:25:52 +00001057 */
1058 j = 0;
1059 check_n_ranks = pinfo->dimm_params[0][0].n_ranks;
1060 check_rank_density = pinfo->dimm_params[0][0].rank_density;
York Suna4c66502012-08-17 08:22:39 +00001061 check_n_row_addr = pinfo->dimm_params[0][0].n_row_addr;
1062 check_n_col_addr = pinfo->dimm_params[0][0].n_col_addr;
1063 check_intlv = pinfo->memctl_opts[0].memctl_interleaving_mode;
york076bff82010-07-02 22:25:52 +00001064 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
York Suna4c66502012-08-17 08:22:39 +00001065 dimm = &pinfo->dimm_params[i][0];
1066 if (!pinfo->memctl_opts[i].memctl_interleaving) {
1067 continue;
1068 } else if (((check_rank_density != dimm->rank_density) ||
1069 (check_n_ranks != dimm->n_ranks) ||
1070 (check_n_row_addr != dimm->n_row_addr) ||
1071 (check_n_col_addr != dimm->n_col_addr) ||
1072 (check_intlv !=
1073 pinfo->memctl_opts[i].memctl_interleaving_mode))){
1074 intlv_invalid = 1;
1075 break;
1076 } else {
york076bff82010-07-02 22:25:52 +00001077 j++;
1078 }
York Suna4c66502012-08-17 08:22:39 +00001079
york076bff82010-07-02 22:25:52 +00001080 }
York Suna4c66502012-08-17 08:22:39 +00001081 if (intlv_invalid) {
york076bff82010-07-02 22:25:52 +00001082 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
York Suna4c66502012-08-17 08:22:39 +00001083 pinfo->memctl_opts[i].memctl_interleaving = 0;
1084 printf("Not all DIMMs are identical. "
1085 "Memory controller interleaving disabled.\n");
1086 } else {
1087 switch (check_intlv) {
1088 case FSL_DDR_CACHE_LINE_INTERLEAVING:
1089 case FSL_DDR_PAGE_INTERLEAVING:
1090 case FSL_DDR_BANK_INTERLEAVING:
1091 case FSL_DDR_SUPERBANK_INTERLEAVING:
1092 if (3 == CONFIG_NUM_DDR_CONTROLLERS)
1093 k = 2;
1094 else
1095 k = CONFIG_NUM_DDR_CONTROLLERS;
1096 break;
1097 case FSL_DDR_3WAY_1KB_INTERLEAVING:
1098 case FSL_DDR_3WAY_4KB_INTERLEAVING:
1099 case FSL_DDR_3WAY_8KB_INTERLEAVING:
1100 case FSL_DDR_4WAY_1KB_INTERLEAVING:
1101 case FSL_DDR_4WAY_4KB_INTERLEAVING:
1102 case FSL_DDR_4WAY_8KB_INTERLEAVING:
1103 default:
1104 k = CONFIG_NUM_DDR_CONTROLLERS;
1105 break;
1106 }
1107 debug("%d of %d controllers are interleaving.\n", j, k);
York Sun89b78092012-10-08 07:44:27 +00001108 if (j && (j != k)) {
York Suna4c66502012-08-17 08:22:39 +00001109 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
york076bff82010-07-02 22:25:52 +00001110 pinfo->memctl_opts[i].memctl_interleaving = 0;
York Suna4c66502012-08-17 08:22:39 +00001111 printf("Not all controllers have compatible "
1112 "interleaving mode. All disabled.\n");
1113 }
york076bff82010-07-02 22:25:52 +00001114 }
York Suna4c66502012-08-17 08:22:39 +00001115 debug("Checking interleaving options completed\n");
york076bff82010-07-02 22:25:52 +00001116}
Kumar Gala3dbd5d72011-01-09 14:06:28 -06001117
1118int fsl_use_spd(void)
1119{
1120 int use_spd = 0;
1121
1122#ifdef CONFIG_DDR_SPD
Kumar Galadd50af22011-01-09 11:37:00 -06001123 char buffer[HWCONFIG_BUFFER_SIZE];
1124 char *buf = NULL;
1125
1126 /*
1127 * Extract hwconfig from environment since we have not properly setup
1128 * the environment but need it for ddr config params
1129 */
1130 if (getenv_f("hwconfig", buffer, sizeof(buffer)) > 0)
1131 buf = buffer;
1132
Kumar Gala3dbd5d72011-01-09 14:06:28 -06001133 /* if hwconfig is not enabled, or "sdram" is not defined, use spd */
Kumar Galadd50af22011-01-09 11:37:00 -06001134 if (hwconfig_sub_f("fsl_ddr", "sdram", buf)) {
1135 if (hwconfig_subarg_cmp_f("fsl_ddr", "sdram", "spd", buf))
Kumar Gala3dbd5d72011-01-09 14:06:28 -06001136 use_spd = 1;
Kumar Galadd50af22011-01-09 11:37:00 -06001137 else if (hwconfig_subarg_cmp_f("fsl_ddr", "sdram",
1138 "fixed", buf))
Kumar Gala3dbd5d72011-01-09 14:06:28 -06001139 use_spd = 0;
1140 else
1141 use_spd = 1;
1142 } else
1143 use_spd = 1;
1144#endif
1145
1146 return use_spd;
1147}