]> git.ipfire.org Git - thirdparty/u-boot.git/blame - drivers/ddr/fsl/options.c
drivers/ddr/fsl: Dual-license DDR driver
[thirdparty/u-boot.git] / drivers / ddr / fsl / options.c
CommitLineData
58e5e9af 1/*
c0c32af0
YS
2 * Copyright 2008, 2010-2016 Freescale Semiconductor, Inc.
3 * Copyright 2017-2018 NXP Semiconductor
58e5e9af 4 *
ee3556bc 5 * SPDX-License-Identifier: GPL-2.0+ BSD-3-Clause
58e5e9af
KG
6 */
7
8#include <common.h>
79e4e648 9#include <hwconfig.h>
5614e71b 10#include <fsl_ddr_sdram.h>
58e5e9af 11
5614e71b 12#include <fsl_ddr.h>
457e51cf
SG
13#if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3) || \
14 defined(CONFIG_ARM)
6e2941d7
SG
15#include <asm/arch/clock.h>
16#endif
58e5e9af 17
dd50af25
KG
18/*
19 * Use our own stack based buffer before relocation to allow accessing longer
20 * hwconfig strings that might be in the environment before we've relocated.
21 * This is pretty fragile on both the use of stack and if the buffer is big
00caae6d 22 * enough. However we will get a warning from env_get_f() for the latter.
dd50af25 23 */
dd50af25 24
58e5e9af
KG
25/* Board-specific functions defined in each board's ddr.c */
26extern void fsl_ddr_board_options(memctl_options_t *popts,
dfb49108 27 dimm_params_t *pdimm,
58e5e9af
KG
28 unsigned int ctrl_num);
29
4e57382f 30struct dynamic_odt {
e1fd16b6
YS
31 unsigned int odt_rd_cfg;
32 unsigned int odt_wr_cfg;
33 unsigned int odt_rtt_norm;
34 unsigned int odt_rtt_wr;
4e57382f 35};
e1fd16b6 36
19601dd9
YS
37#ifdef CONFIG_SYS_FSL_DDR4
38/* Quad rank is not verified yet due availability.
39 * Replacing 20 OHM with 34 OHM since DDR4 doesn't have 20 OHM option
40 */
97fbf26d 41static __maybe_unused const struct dynamic_odt single_Q[4] = {
19601dd9
YS
42 { /* cs0 */
43 FSL_DDR_ODT_NEVER,
44 FSL_DDR_ODT_CS_AND_OTHER_DIMM,
45 DDR4_RTT_34_OHM, /* unverified */
46 DDR4_RTT_120_OHM
47 },
48 { /* cs1 */
49 FSL_DDR_ODT_NEVER,
50 FSL_DDR_ODT_NEVER,
51 DDR4_RTT_OFF,
52 DDR4_RTT_120_OHM
53 },
54 { /* cs2 */
55 FSL_DDR_ODT_NEVER,
56 FSL_DDR_ODT_CS_AND_OTHER_DIMM,
57 DDR4_RTT_34_OHM,
58 DDR4_RTT_120_OHM
59 },
60 { /* cs3 */
61 FSL_DDR_ODT_NEVER,
62 FSL_DDR_ODT_NEVER, /* tied high */
63 DDR4_RTT_OFF,
64 DDR4_RTT_120_OHM
65 }
66};
67
97fbf26d 68static __maybe_unused const struct dynamic_odt single_D[4] = {
19601dd9
YS
69 { /* cs0 */
70 FSL_DDR_ODT_NEVER,
71 FSL_DDR_ODT_ALL,
72 DDR4_RTT_40_OHM,
73 DDR4_RTT_OFF
74 },
75 { /* cs1 */
76 FSL_DDR_ODT_NEVER,
77 FSL_DDR_ODT_NEVER,
78 DDR4_RTT_OFF,
79 DDR4_RTT_OFF
80 },
81 {0, 0, 0, 0},
82 {0, 0, 0, 0}
83};
84
97fbf26d 85static __maybe_unused const struct dynamic_odt single_S[4] = {
19601dd9
YS
86 { /* cs0 */
87 FSL_DDR_ODT_NEVER,
88 FSL_DDR_ODT_ALL,
89 DDR4_RTT_40_OHM,
90 DDR4_RTT_OFF
91 },
92 {0, 0, 0, 0},
93 {0, 0, 0, 0},
94 {0, 0, 0, 0},
95};
96
97fbf26d 97static __maybe_unused const struct dynamic_odt dual_DD[4] = {
19601dd9
YS
98 { /* cs0 */
99 FSL_DDR_ODT_NEVER,
100 FSL_DDR_ODT_SAME_DIMM,
101 DDR4_RTT_120_OHM,
102 DDR4_RTT_OFF
103 },
104 { /* cs1 */
105 FSL_DDR_ODT_OTHER_DIMM,
106 FSL_DDR_ODT_OTHER_DIMM,
107 DDR4_RTT_34_OHM,
108 DDR4_RTT_OFF
109 },
110 { /* cs2 */
111 FSL_DDR_ODT_NEVER,
112 FSL_DDR_ODT_SAME_DIMM,
113 DDR4_RTT_120_OHM,
114 DDR4_RTT_OFF
115 },
116 { /* cs3 */
117 FSL_DDR_ODT_OTHER_DIMM,
118 FSL_DDR_ODT_OTHER_DIMM,
119 DDR4_RTT_34_OHM,
120 DDR4_RTT_OFF
121 }
122};
123
97fbf26d 124static __maybe_unused const struct dynamic_odt dual_DS[4] = {
19601dd9
YS
125 { /* cs0 */
126 FSL_DDR_ODT_NEVER,
127 FSL_DDR_ODT_SAME_DIMM,
128 DDR4_RTT_120_OHM,
129 DDR4_RTT_OFF
130 },
131 { /* cs1 */
132 FSL_DDR_ODT_OTHER_DIMM,
133 FSL_DDR_ODT_OTHER_DIMM,
134 DDR4_RTT_34_OHM,
135 DDR4_RTT_OFF
136 },
137 { /* cs2 */
138 FSL_DDR_ODT_OTHER_DIMM,
139 FSL_DDR_ODT_ALL,
140 DDR4_RTT_34_OHM,
141 DDR4_RTT_120_OHM
142 },
143 {0, 0, 0, 0}
144};
97fbf26d 145static __maybe_unused const struct dynamic_odt dual_SD[4] = {
19601dd9
YS
146 { /* cs0 */
147 FSL_DDR_ODT_OTHER_DIMM,
148 FSL_DDR_ODT_ALL,
149 DDR4_RTT_34_OHM,
150 DDR4_RTT_120_OHM
151 },
152 {0, 0, 0, 0},
153 { /* cs2 */
154 FSL_DDR_ODT_NEVER,
155 FSL_DDR_ODT_SAME_DIMM,
156 DDR4_RTT_120_OHM,
157 DDR4_RTT_OFF
158 },
159 { /* cs3 */
160 FSL_DDR_ODT_OTHER_DIMM,
161 FSL_DDR_ODT_OTHER_DIMM,
162 DDR4_RTT_34_OHM,
163 DDR4_RTT_OFF
164 }
165};
166
97fbf26d 167static __maybe_unused const struct dynamic_odt dual_SS[4] = {
19601dd9
YS
168 { /* cs0 */
169 FSL_DDR_ODT_OTHER_DIMM,
170 FSL_DDR_ODT_ALL,
171 DDR4_RTT_34_OHM,
172 DDR4_RTT_120_OHM
173 },
174 {0, 0, 0, 0},
175 { /* cs2 */
176 FSL_DDR_ODT_OTHER_DIMM,
177 FSL_DDR_ODT_ALL,
178 DDR4_RTT_34_OHM,
179 DDR4_RTT_120_OHM
180 },
181 {0, 0, 0, 0}
182};
183
97fbf26d 184static __maybe_unused const struct dynamic_odt dual_D0[4] = {
19601dd9
YS
185 { /* cs0 */
186 FSL_DDR_ODT_NEVER,
187 FSL_DDR_ODT_SAME_DIMM,
188 DDR4_RTT_40_OHM,
189 DDR4_RTT_OFF
190 },
191 { /* cs1 */
192 FSL_DDR_ODT_NEVER,
193 FSL_DDR_ODT_NEVER,
194 DDR4_RTT_OFF,
195 DDR4_RTT_OFF
196 },
197 {0, 0, 0, 0},
198 {0, 0, 0, 0}
199};
200
97fbf26d 201static __maybe_unused const struct dynamic_odt dual_0D[4] = {
19601dd9
YS
202 {0, 0, 0, 0},
203 {0, 0, 0, 0},
204 { /* cs2 */
205 FSL_DDR_ODT_NEVER,
206 FSL_DDR_ODT_SAME_DIMM,
207 DDR4_RTT_40_OHM,
208 DDR4_RTT_OFF
209 },
210 { /* cs3 */
211 FSL_DDR_ODT_NEVER,
212 FSL_DDR_ODT_NEVER,
213 DDR4_RTT_OFF,
214 DDR4_RTT_OFF
215 }
216};
217
97fbf26d 218static __maybe_unused const struct dynamic_odt dual_S0[4] = {
19601dd9
YS
219 { /* cs0 */
220 FSL_DDR_ODT_NEVER,
221 FSL_DDR_ODT_CS,
222 DDR4_RTT_40_OHM,
223 DDR4_RTT_OFF
224 },
225 {0, 0, 0, 0},
226 {0, 0, 0, 0},
227 {0, 0, 0, 0}
228
229};
230
97fbf26d 231static __maybe_unused const struct dynamic_odt dual_0S[4] = {
19601dd9
YS
232 {0, 0, 0, 0},
233 {0, 0, 0, 0},
234 { /* cs2 */
235 FSL_DDR_ODT_NEVER,
236 FSL_DDR_ODT_CS,
237 DDR4_RTT_40_OHM,
238 DDR4_RTT_OFF
239 },
240 {0, 0, 0, 0}
241
242};
243
97fbf26d 244static __maybe_unused const struct dynamic_odt odt_unknown[4] = {
19601dd9
YS
245 { /* cs0 */
246 FSL_DDR_ODT_NEVER,
247 FSL_DDR_ODT_CS,
248 DDR4_RTT_120_OHM,
249 DDR4_RTT_OFF
250 },
251 { /* cs1 */
252 FSL_DDR_ODT_NEVER,
253 FSL_DDR_ODT_CS,
254 DDR4_RTT_120_OHM,
255 DDR4_RTT_OFF
256 },
257 { /* cs2 */
258 FSL_DDR_ODT_NEVER,
259 FSL_DDR_ODT_CS,
260 DDR4_RTT_120_OHM,
261 DDR4_RTT_OFF
262 },
263 { /* cs3 */
264 FSL_DDR_ODT_NEVER,
265 FSL_DDR_ODT_CS,
266 DDR4_RTT_120_OHM,
267 DDR4_RTT_OFF
268 }
269};
270#elif defined(CONFIG_SYS_FSL_DDR3)
97fbf26d 271static __maybe_unused const struct dynamic_odt single_Q[4] = {
e1fd16b6
YS
272 { /* cs0 */
273 FSL_DDR_ODT_NEVER,
274 FSL_DDR_ODT_CS_AND_OTHER_DIMM,
275 DDR3_RTT_20_OHM,
276 DDR3_RTT_120_OHM
277 },
278 { /* cs1 */
279 FSL_DDR_ODT_NEVER,
280 FSL_DDR_ODT_NEVER, /* tied high */
281 DDR3_RTT_OFF,
282 DDR3_RTT_120_OHM
283 },
284 { /* cs2 */
285 FSL_DDR_ODT_NEVER,
286 FSL_DDR_ODT_CS_AND_OTHER_DIMM,
287 DDR3_RTT_20_OHM,
288 DDR3_RTT_120_OHM
289 },
290 { /* cs3 */
291 FSL_DDR_ODT_NEVER,
292 FSL_DDR_ODT_NEVER, /* tied high */
293 DDR3_RTT_OFF,
294 DDR3_RTT_120_OHM
295 }
296};
297
97fbf26d 298static __maybe_unused const struct dynamic_odt single_D[4] = {
e1fd16b6
YS
299 { /* cs0 */
300 FSL_DDR_ODT_NEVER,
301 FSL_DDR_ODT_ALL,
302 DDR3_RTT_40_OHM,
303 DDR3_RTT_OFF
304 },
305 { /* cs1 */
306 FSL_DDR_ODT_NEVER,
307 FSL_DDR_ODT_NEVER,
308 DDR3_RTT_OFF,
309 DDR3_RTT_OFF
310 },
311 {0, 0, 0, 0},
312 {0, 0, 0, 0}
313};
314
97fbf26d 315static __maybe_unused const struct dynamic_odt single_S[4] = {
e1fd16b6
YS
316 { /* cs0 */
317 FSL_DDR_ODT_NEVER,
318 FSL_DDR_ODT_ALL,
319 DDR3_RTT_40_OHM,
320 DDR3_RTT_OFF
321 },
322 {0, 0, 0, 0},
323 {0, 0, 0, 0},
324 {0, 0, 0, 0},
325};
326
97fbf26d 327static __maybe_unused const struct dynamic_odt dual_DD[4] = {
e1fd16b6
YS
328 { /* cs0 */
329 FSL_DDR_ODT_NEVER,
330 FSL_DDR_ODT_SAME_DIMM,
331 DDR3_RTT_120_OHM,
332 DDR3_RTT_OFF
333 },
334 { /* cs1 */
335 FSL_DDR_ODT_OTHER_DIMM,
336 FSL_DDR_ODT_OTHER_DIMM,
337 DDR3_RTT_30_OHM,
338 DDR3_RTT_OFF
339 },
340 { /* cs2 */
341 FSL_DDR_ODT_NEVER,
342 FSL_DDR_ODT_SAME_DIMM,
343 DDR3_RTT_120_OHM,
344 DDR3_RTT_OFF
345 },
346 { /* cs3 */
347 FSL_DDR_ODT_OTHER_DIMM,
348 FSL_DDR_ODT_OTHER_DIMM,
349 DDR3_RTT_30_OHM,
350 DDR3_RTT_OFF
351 }
352};
353
97fbf26d 354static __maybe_unused const struct dynamic_odt dual_DS[4] = {
e1fd16b6
YS
355 { /* cs0 */
356 FSL_DDR_ODT_NEVER,
357 FSL_DDR_ODT_SAME_DIMM,
358 DDR3_RTT_120_OHM,
359 DDR3_RTT_OFF
360 },
361 { /* cs1 */
362 FSL_DDR_ODT_OTHER_DIMM,
363 FSL_DDR_ODT_OTHER_DIMM,
364 DDR3_RTT_30_OHM,
365 DDR3_RTT_OFF
366 },
367 { /* cs2 */
368 FSL_DDR_ODT_OTHER_DIMM,
369 FSL_DDR_ODT_ALL,
370 DDR3_RTT_20_OHM,
371 DDR3_RTT_120_OHM
372 },
373 {0, 0, 0, 0}
374};
97fbf26d 375static __maybe_unused const struct dynamic_odt dual_SD[4] = {
e1fd16b6
YS
376 { /* cs0 */
377 FSL_DDR_ODT_OTHER_DIMM,
378 FSL_DDR_ODT_ALL,
379 DDR3_RTT_20_OHM,
380 DDR3_RTT_120_OHM
381 },
382 {0, 0, 0, 0},
383 { /* cs2 */
384 FSL_DDR_ODT_NEVER,
385 FSL_DDR_ODT_SAME_DIMM,
386 DDR3_RTT_120_OHM,
387 DDR3_RTT_OFF
388 },
389 { /* cs3 */
390 FSL_DDR_ODT_OTHER_DIMM,
391 FSL_DDR_ODT_OTHER_DIMM,
392 DDR3_RTT_20_OHM,
393 DDR3_RTT_OFF
394 }
395};
396
97fbf26d 397static __maybe_unused const struct dynamic_odt dual_SS[4] = {
e1fd16b6
YS
398 { /* cs0 */
399 FSL_DDR_ODT_OTHER_DIMM,
400 FSL_DDR_ODT_ALL,
401 DDR3_RTT_30_OHM,
402 DDR3_RTT_120_OHM
403 },
404 {0, 0, 0, 0},
405 { /* cs2 */
406 FSL_DDR_ODT_OTHER_DIMM,
407 FSL_DDR_ODT_ALL,
408 DDR3_RTT_30_OHM,
409 DDR3_RTT_120_OHM
410 },
411 {0, 0, 0, 0}
412};
413
97fbf26d 414static __maybe_unused const struct dynamic_odt dual_D0[4] = {
e1fd16b6
YS
415 { /* cs0 */
416 FSL_DDR_ODT_NEVER,
417 FSL_DDR_ODT_SAME_DIMM,
418 DDR3_RTT_40_OHM,
419 DDR3_RTT_OFF
420 },
421 { /* cs1 */
422 FSL_DDR_ODT_NEVER,
423 FSL_DDR_ODT_NEVER,
424 DDR3_RTT_OFF,
425 DDR3_RTT_OFF
426 },
427 {0, 0, 0, 0},
428 {0, 0, 0, 0}
429};
430
97fbf26d 431static __maybe_unused const struct dynamic_odt dual_0D[4] = {
e1fd16b6
YS
432 {0, 0, 0, 0},
433 {0, 0, 0, 0},
434 { /* cs2 */
435 FSL_DDR_ODT_NEVER,
436 FSL_DDR_ODT_SAME_DIMM,
437 DDR3_RTT_40_OHM,
438 DDR3_RTT_OFF
439 },
440 { /* cs3 */
441 FSL_DDR_ODT_NEVER,
442 FSL_DDR_ODT_NEVER,
443 DDR3_RTT_OFF,
444 DDR3_RTT_OFF
445 }
446};
447
97fbf26d 448static __maybe_unused const struct dynamic_odt dual_S0[4] = {
e1fd16b6
YS
449 { /* cs0 */
450 FSL_DDR_ODT_NEVER,
451 FSL_DDR_ODT_CS,
452 DDR3_RTT_40_OHM,
453 DDR3_RTT_OFF
454 },
455 {0, 0, 0, 0},
456 {0, 0, 0, 0},
457 {0, 0, 0, 0}
458
459};
460
97fbf26d 461static __maybe_unused const struct dynamic_odt dual_0S[4] = {
e1fd16b6
YS
462 {0, 0, 0, 0},
463 {0, 0, 0, 0},
464 { /* cs2 */
465 FSL_DDR_ODT_NEVER,
466 FSL_DDR_ODT_CS,
467 DDR3_RTT_40_OHM,
468 DDR3_RTT_OFF
469 },
470 {0, 0, 0, 0}
471
472};
473
97fbf26d 474static __maybe_unused const struct dynamic_odt odt_unknown[4] = {
e1fd16b6
YS
475 { /* cs0 */
476 FSL_DDR_ODT_NEVER,
477 FSL_DDR_ODT_CS,
478 DDR3_RTT_120_OHM,
479 DDR3_RTT_OFF
480 },
481 { /* cs1 */
482 FSL_DDR_ODT_NEVER,
483 FSL_DDR_ODT_CS,
484 DDR3_RTT_120_OHM,
485 DDR3_RTT_OFF
486 },
487 { /* cs2 */
488 FSL_DDR_ODT_NEVER,
489 FSL_DDR_ODT_CS,
490 DDR3_RTT_120_OHM,
491 DDR3_RTT_OFF
492 },
493 { /* cs3 */
494 FSL_DDR_ODT_NEVER,
495 FSL_DDR_ODT_CS,
496 DDR3_RTT_120_OHM,
497 DDR3_RTT_OFF
498 }
499};
19601dd9 500#else /* CONFIG_SYS_FSL_DDR3 */
97fbf26d 501static __maybe_unused const struct dynamic_odt single_Q[4] = {
4e57382f
YS
502 {0, 0, 0, 0},
503 {0, 0, 0, 0},
504 {0, 0, 0, 0},
505 {0, 0, 0, 0}
506};
507
97fbf26d 508static __maybe_unused const struct dynamic_odt single_D[4] = {
4e57382f
YS
509 { /* cs0 */
510 FSL_DDR_ODT_NEVER,
511 FSL_DDR_ODT_ALL,
512 DDR2_RTT_150_OHM,
513 DDR2_RTT_OFF
514 },
515 { /* cs1 */
516 FSL_DDR_ODT_NEVER,
517 FSL_DDR_ODT_NEVER,
518 DDR2_RTT_OFF,
519 DDR2_RTT_OFF
520 },
521 {0, 0, 0, 0},
522 {0, 0, 0, 0}
523};
524
97fbf26d 525static __maybe_unused const struct dynamic_odt single_S[4] = {
4e57382f
YS
526 { /* cs0 */
527 FSL_DDR_ODT_NEVER,
528 FSL_DDR_ODT_ALL,
529 DDR2_RTT_150_OHM,
530 DDR2_RTT_OFF
531 },
532 {0, 0, 0, 0},
533 {0, 0, 0, 0},
534 {0, 0, 0, 0},
535};
536
97fbf26d 537static __maybe_unused const struct dynamic_odt dual_DD[4] = {
4e57382f
YS
538 { /* cs0 */
539 FSL_DDR_ODT_OTHER_DIMM,
540 FSL_DDR_ODT_OTHER_DIMM,
541 DDR2_RTT_75_OHM,
542 DDR2_RTT_OFF
543 },
544 { /* cs1 */
545 FSL_DDR_ODT_NEVER,
546 FSL_DDR_ODT_NEVER,
547 DDR2_RTT_OFF,
548 DDR2_RTT_OFF
549 },
550 { /* cs2 */
551 FSL_DDR_ODT_OTHER_DIMM,
552 FSL_DDR_ODT_OTHER_DIMM,
553 DDR2_RTT_75_OHM,
554 DDR2_RTT_OFF
555 },
556 { /* cs3 */
557 FSL_DDR_ODT_NEVER,
558 FSL_DDR_ODT_NEVER,
559 DDR2_RTT_OFF,
560 DDR2_RTT_OFF
561 }
562};
563
97fbf26d 564static __maybe_unused const struct dynamic_odt dual_DS[4] = {
4e57382f
YS
565 { /* cs0 */
566 FSL_DDR_ODT_OTHER_DIMM,
567 FSL_DDR_ODT_OTHER_DIMM,
568 DDR2_RTT_75_OHM,
569 DDR2_RTT_OFF
570 },
571 { /* cs1 */
572 FSL_DDR_ODT_NEVER,
573 FSL_DDR_ODT_NEVER,
574 DDR2_RTT_OFF,
575 DDR2_RTT_OFF
576 },
577 { /* cs2 */
578 FSL_DDR_ODT_OTHER_DIMM,
579 FSL_DDR_ODT_OTHER_DIMM,
580 DDR2_RTT_75_OHM,
581 DDR2_RTT_OFF
582 },
583 {0, 0, 0, 0}
584};
585
97fbf26d 586static __maybe_unused const struct dynamic_odt dual_SD[4] = {
4e57382f
YS
587 { /* cs0 */
588 FSL_DDR_ODT_OTHER_DIMM,
589 FSL_DDR_ODT_OTHER_DIMM,
590 DDR2_RTT_75_OHM,
591 DDR2_RTT_OFF
592 },
593 {0, 0, 0, 0},
594 { /* cs2 */
595 FSL_DDR_ODT_OTHER_DIMM,
596 FSL_DDR_ODT_OTHER_DIMM,
597 DDR2_RTT_75_OHM,
598 DDR2_RTT_OFF
599 },
600 { /* cs3 */
601 FSL_DDR_ODT_NEVER,
602 FSL_DDR_ODT_NEVER,
603 DDR2_RTT_OFF,
604 DDR2_RTT_OFF
605 }
606};
e1fd16b6 607
97fbf26d 608static __maybe_unused const struct dynamic_odt dual_SS[4] = {
4e57382f
YS
609 { /* cs0 */
610 FSL_DDR_ODT_OTHER_DIMM,
611 FSL_DDR_ODT_OTHER_DIMM,
612 DDR2_RTT_75_OHM,
613 DDR2_RTT_OFF
614 },
615 {0, 0, 0, 0},
616 { /* cs2 */
617 FSL_DDR_ODT_OTHER_DIMM,
618 FSL_DDR_ODT_OTHER_DIMM,
619 DDR2_RTT_75_OHM,
620 DDR2_RTT_OFF
621 },
622 {0, 0, 0, 0}
623};
624
97fbf26d 625static __maybe_unused const struct dynamic_odt dual_D0[4] = {
4e57382f
YS
626 { /* cs0 */
627 FSL_DDR_ODT_NEVER,
628 FSL_DDR_ODT_ALL,
629 DDR2_RTT_150_OHM,
630 DDR2_RTT_OFF
631 },
632 { /* cs1 */
633 FSL_DDR_ODT_NEVER,
634 FSL_DDR_ODT_NEVER,
635 DDR2_RTT_OFF,
636 DDR2_RTT_OFF
637 },
638 {0, 0, 0, 0},
639 {0, 0, 0, 0}
640};
641
97fbf26d 642static __maybe_unused const struct dynamic_odt dual_0D[4] = {
4e57382f
YS
643 {0, 0, 0, 0},
644 {0, 0, 0, 0},
645 { /* cs2 */
646 FSL_DDR_ODT_NEVER,
647 FSL_DDR_ODT_ALL,
648 DDR2_RTT_150_OHM,
649 DDR2_RTT_OFF
650 },
651 { /* cs3 */
652 FSL_DDR_ODT_NEVER,
653 FSL_DDR_ODT_NEVER,
654 DDR2_RTT_OFF,
655 DDR2_RTT_OFF
656 }
657};
658
97fbf26d 659static __maybe_unused const struct dynamic_odt dual_S0[4] = {
4e57382f
YS
660 { /* cs0 */
661 FSL_DDR_ODT_NEVER,
662 FSL_DDR_ODT_CS,
663 DDR2_RTT_150_OHM,
664 DDR2_RTT_OFF
665 },
666 {0, 0, 0, 0},
667 {0, 0, 0, 0},
668 {0, 0, 0, 0}
669
670};
671
97fbf26d 672static __maybe_unused const struct dynamic_odt dual_0S[4] = {
4e57382f
YS
673 {0, 0, 0, 0},
674 {0, 0, 0, 0},
675 { /* cs2 */
676 FSL_DDR_ODT_NEVER,
677 FSL_DDR_ODT_CS,
678 DDR2_RTT_150_OHM,
679 DDR2_RTT_OFF
680 },
681 {0, 0, 0, 0}
682
683};
684
97fbf26d 685static __maybe_unused const struct dynamic_odt odt_unknown[4] = {
4e57382f
YS
686 { /* cs0 */
687 FSL_DDR_ODT_NEVER,
688 FSL_DDR_ODT_CS,
689 DDR2_RTT_75_OHM,
690 DDR2_RTT_OFF
691 },
692 { /* cs1 */
693 FSL_DDR_ODT_NEVER,
694 FSL_DDR_ODT_NEVER,
695 DDR2_RTT_OFF,
696 DDR2_RTT_OFF
697 },
698 { /* cs2 */
699 FSL_DDR_ODT_NEVER,
700 FSL_DDR_ODT_CS,
701 DDR2_RTT_75_OHM,
702 DDR2_RTT_OFF
703 },
704 { /* cs3 */
705 FSL_DDR_ODT_NEVER,
706 FSL_DDR_ODT_NEVER,
707 DDR2_RTT_OFF,
708 DDR2_RTT_OFF
709 }
710};
711#endif
89b78095
YS
712
713/*
714 * Automatically seleect bank interleaving mode based on DIMMs
715 * in this order: cs0_cs1_cs2_cs3, cs0_cs1, null.
716 * This function only deal with one or two slots per controller.
717 */
718static inline unsigned int auto_bank_intlv(dimm_params_t *pdimm)
719{
720#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
721 if (pdimm[0].n_ranks == 4)
722 return FSL_DDR_CS0_CS1_CS2_CS3;
723 else if (pdimm[0].n_ranks == 2)
724 return FSL_DDR_CS0_CS1;
725#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
726#ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
727 if (pdimm[0].n_ranks == 4)
728 return FSL_DDR_CS0_CS1_CS2_CS3;
729#endif
730 if (pdimm[0].n_ranks == 2) {
731 if (pdimm[1].n_ranks == 2)
732 return FSL_DDR_CS0_CS1_CS2_CS3;
733 else
734 return FSL_DDR_CS0_CS1;
735 }
736#endif
737 return 0;
738}
739
56848428 740unsigned int populate_memctl_options(const common_timing_params_t *common_dimm,
58e5e9af 741 memctl_options_t *popts,
dfb49108 742 dimm_params_t *pdimm,
58e5e9af
KG
743 unsigned int ctrl_num)
744{
745 unsigned int i;
dd50af25
KG
746 char buffer[HWCONFIG_BUFFER_SIZE];
747 char *buf = NULL;
34e026f9
YS
748#if defined(CONFIG_SYS_FSL_DDR3) || \
749 defined(CONFIG_SYS_FSL_DDR2) || \
750 defined(CONFIG_SYS_FSL_DDR4)
4e57382f 751 const struct dynamic_odt *pdodt = odt_unknown;
667bc17e 752#endif
564e9383 753#if (CONFIG_FSL_SDRAM_TYPE != SDRAM_TYPE_DDR4)
cda1de21 754 ulong ddr_freq;
564e9383 755#endif
dd50af25
KG
756
757 /*
758 * Extract hwconfig from environment since we have not properly setup
759 * the environment but need it for ddr config params
760 */
00caae6d 761 if (env_get_f("hwconfig", buffer, sizeof(buffer)) > 0)
dd50af25 762 buf = buffer;
58e5e9af 763
34e026f9
YS
764#if defined(CONFIG_SYS_FSL_DDR3) || \
765 defined(CONFIG_SYS_FSL_DDR2) || \
766 defined(CONFIG_SYS_FSL_DDR4)
58e5e9af 767 /* Chip select options. */
349689b8
YS
768#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
769 switch (pdimm[0].n_ranks) {
770 case 1:
771 pdodt = single_S;
772 break;
773 case 2:
774 pdodt = single_D;
775 break;
776 case 4:
777 pdodt = single_Q;
778 break;
779 }
780#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
781 switch (pdimm[0].n_ranks) {
782#ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
783 case 4:
784 pdodt = single_Q;
785 if (pdimm[1].n_ranks)
786 printf("Error: Quad- and Dual-rank DIMMs cannot be used together\n");
787 break;
788#endif
789 case 2:
790 switch (pdimm[1].n_ranks) {
e1fd16b6 791 case 2:
349689b8 792 pdodt = dual_DD;
e1fd16b6 793 break;
349689b8
YS
794 case 1:
795 pdodt = dual_DS;
e1fd16b6 796 break;
349689b8
YS
797 case 0:
798 pdodt = dual_D0;
123922b1 799 break;
349689b8
YS
800 }
801 break;
802 case 1:
803 switch (pdimm[1].n_ranks) {
e1fd16b6 804 case 2:
349689b8 805 pdodt = dual_SD;
e1fd16b6
YS
806 break;
807 case 1:
349689b8 808 pdodt = dual_SS;
e1fd16b6
YS
809 break;
810 case 0:
349689b8 811 pdodt = dual_S0;
e1fd16b6
YS
812 break;
813 }
349689b8
YS
814 break;
815 case 0:
816 switch (pdimm[1].n_ranks) {
817 case 2:
818 pdodt = dual_0D;
819 break;
820 case 1:
821 pdodt = dual_0S;
822 break;
823 }
824 break;
e1fd16b6 825 }
349689b8
YS
826#endif /* CONFIG_DIMM_SLOTS_PER_CTLR */
827#endif /* CONFIG_SYS_FSL_DDR2, 3, 4 */
58e5e9af
KG
828
829 /* Pick chip-select local options. */
830 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
34e026f9
YS
831#if defined(CONFIG_SYS_FSL_DDR3) || \
832 defined(CONFIG_SYS_FSL_DDR2) || \
833 defined(CONFIG_SYS_FSL_DDR4)
e1fd16b6
YS
834 popts->cs_local_opts[i].odt_rd_cfg = pdodt[i].odt_rd_cfg;
835 popts->cs_local_opts[i].odt_wr_cfg = pdodt[i].odt_wr_cfg;
836 popts->cs_local_opts[i].odt_rtt_norm = pdodt[i].odt_rtt_norm;
837 popts->cs_local_opts[i].odt_rtt_wr = pdodt[i].odt_rtt_wr;
838#else
839 popts->cs_local_opts[i].odt_rd_cfg = FSL_DDR_ODT_NEVER;
840 popts->cs_local_opts[i].odt_wr_cfg = FSL_DDR_ODT_CS;
841#endif
58e5e9af
KG
842 popts->cs_local_opts[i].auto_precharge = 0;
843 }
844
845 /* Pick interleaving mode. */
846
847 /*
848 * 0 = no interleaving
849 * 1 = interleaving between 2 controllers
850 */
851 popts->memctl_interleaving = 0;
852
853 /*
854 * 0 = cacheline
855 * 1 = page
856 * 2 = (logical) bank
857 * 3 = superbank (only if CS interleaving is enabled)
858 */
859 popts->memctl_interleaving_mode = 0;
860
861 /*
862 * 0: cacheline: bit 30 of the 36-bit physical addr selects the memctl
863 * 1: page: bit to the left of the column bits selects the memctl
864 * 2: bank: bit to the left of the bank bits selects the memctl
865 * 3: superbank: bit to the left of the chip select selects the memctl
866 *
867 * NOTE: ba_intlv (rank interleaving) is independent of memory
868 * controller interleaving; it is only within a memory controller.
869 * Must use superbank interleaving if rank interleaving is used and
870 * memory controller interleaving is enabled.
871 */
872
873 /*
874 * 0 = no
875 * 0x40 = CS0,CS1
876 * 0x20 = CS2,CS3
877 * 0x60 = CS0,CS1 + CS2,CS3
878 * 0x04 = CS0,CS1,CS2,CS3
879 */
880 popts->ba_intlv_ctl = 0;
881
882 /* Memory Organization Parameters */
56848428 883 popts->registered_dimm_en = common_dimm->all_dimms_registered;
58e5e9af
KG
884
885 /* Operational Mode Paramters */
886
887 /* Pick ECC modes */
0dd38a35 888 popts->ecc_mode = 0; /* 0 = disabled, 1 = enabled */
47df8f03
YS
889#ifdef CONFIG_DDR_ECC
890 if (hwconfig_sub_f("fsl_ddr", "ecc", buf)) {
891 if (hwconfig_subarg_cmp_f("fsl_ddr", "ecc", "on", buf))
0dd38a35 892 popts->ecc_mode = 1;
47df8f03 893 } else
0dd38a35 894 popts->ecc_mode = 1;
58e5e9af 895#endif
b06f6f2f
YS
896 /* 1 = use memory controler to init data */
897 popts->ecc_init_using_memctl = popts->ecc_mode ? 1 : 0;
58e5e9af
KG
898
899 /*
900 * Choose DQS config
901 * 0 for DDR1
902 * 1 for DDR2
903 */
5614e71b 904#if defined(CONFIG_SYS_FSL_DDR1)
0dd38a35 905 popts->dqs_config = 0;
5614e71b 906#elif defined(CONFIG_SYS_FSL_DDR2) || defined(CONFIG_SYS_FSL_DDR3)
0dd38a35 907 popts->dqs_config = 1;
58e5e9af
KG
908#endif
909
910 /* Choose self-refresh during sleep. */
911 popts->self_refresh_in_sleep = 1;
912
913 /* Choose dynamic power management mode. */
914 popts->dynamic_power = 0;
915
e090aa7c
YS
916 /*
917 * check first dimm for primary sdram width
918 * presuming all dimms are similar
919 * 0 = 64-bit, 1 = 32-bit, 2 = 16-bit
920 */
5614e71b 921#if defined(CONFIG_SYS_FSL_DDR1) || defined(CONFIG_SYS_FSL_DDR2)
4c99cb91
YS
922 if (pdimm[0].n_ranks != 0) {
923 if ((pdimm[0].data_width >= 64) && \
924 (pdimm[0].data_width <= 72))
925 popts->data_bus_width = 0;
0e0de24b 926 else if ((pdimm[0].data_width >= 32) && \
4c99cb91
YS
927 (pdimm[0].data_width <= 40))
928 popts->data_bus_width = 1;
929 else {
930 panic("Error: data width %u is invalid!\n",
931 pdimm[0].data_width);
932 }
933 }
934#else
935 if (pdimm[0].n_ranks != 0) {
936 if (pdimm[0].primary_sdram_width == 64)
937 popts->data_bus_width = 0;
938 else if (pdimm[0].primary_sdram_width == 32)
939 popts->data_bus_width = 1;
940 else if (pdimm[0].primary_sdram_width == 16)
941 popts->data_bus_width = 2;
942 else {
943 panic("Error: primary sdram width %u is invalid!\n",
944 pdimm[0].primary_sdram_width);
945 }
946 }
947#endif
58e5e9af 948
b61e0615
YS
949 popts->x4_en = (pdimm[0].device_width == 4) ? 1 : 0;
950
58e5e9af 951 /* Choose burst length. */
34e026f9 952#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
22c9de06 953#if defined(CONFIG_E500MC)
0dd38a35 954 popts->otf_burst_chop_en = 0; /* on-the-fly burst chop disable */
22c9de06
DL
955 popts->burst_length = DDR_BL8; /* Fixed 8-beat burst len */
956#else
51d498f1
YS
957 if ((popts->data_bus_width == 1) || (popts->data_bus_width == 2)) {
958 /* 32-bit or 16-bit bus */
0dd38a35 959 popts->otf_burst_chop_en = 0;
e090aa7c
YS
960 popts->burst_length = DDR_BL8;
961 } else {
0dd38a35 962 popts->otf_burst_chop_en = 1; /* on-the-fly burst chop */
e090aa7c
YS
963 popts->burst_length = DDR_OTF; /* on-the-fly BC4 and BL8 */
964 }
22c9de06 965#endif
c360ceac
DL
966#else
967 popts->burst_length = DDR_BL4; /* has to be 4 for DDR2 */
968#endif
969
970 /* Choose ddr controller address mirror mode */
34e026f9 971#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
6b95be22
YS
972 for (i = 0; i < CONFIG_DIMM_SLOTS_PER_CTLR; i++) {
973 if (pdimm[i].n_ranks) {
974 popts->mirrored_dimm = pdimm[i].mirrored_dimm;
975 break;
976 }
977 }
c360ceac 978#endif
58e5e9af
KG
979
980 /* Global Timing Parameters. */
03e664d8 981 debug("mclk_ps = %u ps\n", get_memory_clk_period_ps(ctrl_num));
58e5e9af
KG
982
983 /* Pick a caslat override. */
984 popts->cas_latency_override = 0;
985 popts->cas_latency_override_value = 3;
986 if (popts->cas_latency_override) {
987 debug("using caslat override value = %u\n",
988 popts->cas_latency_override_value);
989 }
990
991 /* Decide whether to use the computed derated latency */
992 popts->use_derated_caslat = 0;
993
994 /* Choose an additive latency. */
995 popts->additive_latency_override = 0;
996 popts->additive_latency_override_value = 3;
997 if (popts->additive_latency_override) {
998 debug("using additive latency override value = %u\n",
999 popts->additive_latency_override_value);
1000 }
1001
1002 /*
1003 * 2T_EN setting
1004 *
1005 * Factors to consider for 2T_EN:
1006 * - number of DIMMs installed
1007 * - number of components, number of active ranks
1008 * - how much time you want to spend playing around
1009 */
0dd38a35
PJ
1010 popts->twot_en = 0;
1011 popts->threet_en = 0;
58e5e9af 1012
eb118807
SL
1013 /* for RDIMM and DDR4 UDIMM/discrete memory, address parity enable */
1014 if (popts->registered_dimm_en)
1015 popts->ap_en = 1; /* 0 = disable, 1 = enable */
1016 else
1017 popts->ap_en = 0; /* disabled for DDR4 UDIMM/discrete default */
1018
1019 if (hwconfig_sub_f("fsl_ddr", "parity", buf)) {
1020 if (hwconfig_subarg_cmp_f("fsl_ddr", "parity", "on", buf)) {
1021 if (popts->registered_dimm_en ||
1022 (CONFIG_FSL_SDRAM_TYPE == SDRAM_TYPE_DDR4))
1023 popts->ap_en = 1;
1024 }
1025 }
e1fd16b6 1026
58e5e9af
KG
1027 /*
1028 * BSTTOPRE precharge interval
1029 *
1030 * Set this to 0 for global auto precharge
34e026f9
YS
1031 * The value of 0x100 has been used for DDR1, DDR2, DDR3.
1032 * It is not wrong. Any value should be OK. The performance depends on
56848428
YS
1033 * applications. There is no one good value for all. One way to set
1034 * is to use 1/4 of refint value.
58e5e9af 1035 */
56848428
YS
1036 popts->bstopre = picos_to_mclk(ctrl_num, common_dimm->refresh_rate_ps)
1037 >> 2;
58e5e9af 1038
58e5e9af
KG
1039 /*
1040 * Window for four activates -- tFAW
1041 *
1042 * FIXME: UM: applies only to DDR2/DDR3 with eight logical banks only
1043 * FIXME: varies depending upon number of column addresses or data
1044 * FIXME: width, was considering looking at pdimm->primary_sdram_width
1045 */
5614e71b 1046#if defined(CONFIG_SYS_FSL_DDR1)
03e664d8 1047 popts->tfaw_window_four_activates_ps = mclk_to_picos(ctrl_num, 1);
58e5e9af 1048
5614e71b 1049#elif defined(CONFIG_SYS_FSL_DDR2)
58e5e9af
KG
1050 /*
1051 * x4/x8; some datasheets have 35000
1052 * x16 wide columns only? Use 50000?
1053 */
0dd38a35 1054 popts->tfaw_window_four_activates_ps = 37500;
58e5e9af 1055
34e026f9 1056#else
0dd38a35 1057 popts->tfaw_window_four_activates_ps = pdimm[0].tfaw_ps;
c360ceac
DL
1058#endif
1059 popts->zq_en = 0;
1060 popts->wrlvl_en = 0;
34e026f9 1061#if defined(CONFIG_SYS_FSL_DDR3) || defined(CONFIG_SYS_FSL_DDR4)
c360ceac
DL
1062 /*
1063 * due to ddr3 dimm is fly-by topology
1064 * we suggest to enable write leveling to
1065 * meet the tQDSS under different loading.
1066 */
1067 popts->wrlvl_en = 1;
5fb8a8a7 1068 popts->zq_en = 1;
bdc9f7b5 1069 popts->wrlvl_override = 0;
58e5e9af
KG
1070#endif
1071
58e5e9af 1072 /*
c9ffd839
HW
1073 * Check interleaving configuration from environment.
1074 * Please refer to doc/README.fsl-ddr for the detail.
58e5e9af
KG
1075 *
1076 * If memory controller interleaving is enabled, then the data
076bff8f 1077 * bus widths must be programmed identically for all memory controllers.
c9ffd839 1078 *
6b1e1254 1079 * Attempt to set all controllers to the same chip select
c9ffd839
HW
1080 * interleaving mode. It will do a best effort to get the
1081 * requested ranks interleaved together such that the result
1082 * should be a subset of the requested configuration.
6b1e1254
YS
1083 *
1084 * if CONFIG_SYS_FSL_DDR_INTLV_256B is defined, mandatory interleaving
1085 * with 256 Byte is enabled.
58e5e9af 1086 */
51370d56 1087#if (CONFIG_SYS_NUM_DDR_CTLRS > 1)
a4c66509 1088 if (!hwconfig_sub_f("fsl_ddr", "ctlr_intlv", buf))
6b1e1254
YS
1089#ifdef CONFIG_SYS_FSL_DDR_INTLV_256B
1090 ;
1091#else
a4c66509 1092 goto done;
6b1e1254 1093#endif
a4c66509
YS
1094 if (pdimm[0].n_ranks == 0) {
1095 printf("There is no rank on CS0 for controller %d.\n", ctrl_num);
1096 popts->memctl_interleaving = 0;
1097 goto done;
1098 }
1099 popts->memctl_interleaving = 1;
6b1e1254
YS
1100#ifdef CONFIG_SYS_FSL_DDR_INTLV_256B
1101 popts->memctl_interleaving_mode = FSL_DDR_256B_INTERLEAVING;
1102 popts->memctl_interleaving = 1;
1103 debug("256 Byte interleaving\n");
349689b8 1104#else
a4c66509
YS
1105 /*
1106 * test null first. if CONFIG_HWCONFIG is not defined
1107 * hwconfig_arg_cmp returns non-zero
1108 */
1109 if (hwconfig_subarg_cmp_f("fsl_ddr", "ctlr_intlv",
1110 "null", buf)) {
1111 popts->memctl_interleaving = 0;
1112 debug("memory controller interleaving disabled.\n");
1113 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1114 "ctlr_intlv",
1115 "cacheline", buf)) {
1116 popts->memctl_interleaving_mode =
51370d56 1117 ((CONFIG_SYS_NUM_DDR_CTLRS == 3) && ctrl_num == 2) ?
a4c66509
YS
1118 0 : FSL_DDR_CACHE_LINE_INTERLEAVING;
1119 popts->memctl_interleaving =
51370d56 1120 ((CONFIG_SYS_NUM_DDR_CTLRS == 3) && ctrl_num == 2) ?
a4c66509
YS
1121 0 : 1;
1122 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1123 "ctlr_intlv",
1124 "page", buf)) {
1125 popts->memctl_interleaving_mode =
51370d56 1126 ((CONFIG_SYS_NUM_DDR_CTLRS == 3) && ctrl_num == 2) ?
a4c66509
YS
1127 0 : FSL_DDR_PAGE_INTERLEAVING;
1128 popts->memctl_interleaving =
51370d56 1129 ((CONFIG_SYS_NUM_DDR_CTLRS == 3) && ctrl_num == 2) ?
a4c66509
YS
1130 0 : 1;
1131 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1132 "ctlr_intlv",
1133 "bank", buf)) {
1134 popts->memctl_interleaving_mode =
51370d56 1135 ((CONFIG_SYS_NUM_DDR_CTLRS == 3) && ctrl_num == 2) ?
a4c66509
YS
1136 0 : FSL_DDR_BANK_INTERLEAVING;
1137 popts->memctl_interleaving =
51370d56 1138 ((CONFIG_SYS_NUM_DDR_CTLRS == 3) && ctrl_num == 2) ?
a4c66509
YS
1139 0 : 1;
1140 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1141 "ctlr_intlv",
1142 "superbank", buf)) {
1143 popts->memctl_interleaving_mode =
51370d56 1144 ((CONFIG_SYS_NUM_DDR_CTLRS == 3) && ctrl_num == 2) ?
a4c66509
YS
1145 0 : FSL_DDR_SUPERBANK_INTERLEAVING;
1146 popts->memctl_interleaving =
51370d56 1147 ((CONFIG_SYS_NUM_DDR_CTLRS == 3) && ctrl_num == 2) ?
a4c66509 1148 0 : 1;
51370d56 1149#if (CONFIG_SYS_NUM_DDR_CTLRS == 3)
a4c66509
YS
1150 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1151 "ctlr_intlv",
1152 "3way_1KB", buf)) {
1153 popts->memctl_interleaving_mode =
1154 FSL_DDR_3WAY_1KB_INTERLEAVING;
1155 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1156 "ctlr_intlv",
1157 "3way_4KB", buf)) {
1158 popts->memctl_interleaving_mode =
1159 FSL_DDR_3WAY_4KB_INTERLEAVING;
1160 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1161 "ctlr_intlv",
1162 "3way_8KB", buf)) {
1163 popts->memctl_interleaving_mode =
1164 FSL_DDR_3WAY_8KB_INTERLEAVING;
51370d56 1165#elif (CONFIG_SYS_NUM_DDR_CTLRS == 4)
a4c66509
YS
1166 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1167 "ctlr_intlv",
1168 "4way_1KB", buf)) {
1169 popts->memctl_interleaving_mode =
1170 FSL_DDR_4WAY_1KB_INTERLEAVING;
1171 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1172 "ctlr_intlv",
1173 "4way_4KB", buf)) {
1174 popts->memctl_interleaving_mode =
1175 FSL_DDR_4WAY_4KB_INTERLEAVING;
1176 } else if (hwconfig_subarg_cmp_f("fsl_ddr",
1177 "ctlr_intlv",
1178 "4way_8KB", buf)) {
1179 popts->memctl_interleaving_mode =
1180 FSL_DDR_4WAY_8KB_INTERLEAVING;
1181#endif
1182 } else {
1183 popts->memctl_interleaving = 0;
1184 printf("hwconfig has unrecognized parameter for ctlr_intlv.\n");
c9ffd839 1185 }
349689b8 1186#endif /* CONFIG_SYS_FSL_DDR_INTLV_256B */
a4c66509 1187done:
51370d56 1188#endif /* CONFIG_SYS_NUM_DDR_CTLRS > 1 */
dd50af25 1189 if ((hwconfig_sub_f("fsl_ddr", "bank_intlv", buf)) &&
3ad95deb 1190 (CONFIG_CHIP_SELECTS_PER_CTRL > 1)) {
79e4e648 1191 /* test null first. if CONFIG_HWCONFIG is not defined,
dd50af25
KG
1192 * hwconfig_subarg_cmp_f returns non-zero */
1193 if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
1194 "null", buf))
076bff8f 1195 debug("bank interleaving disabled.\n");
dd50af25
KG
1196 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
1197 "cs0_cs1", buf))
c9ffd839 1198 popts->ba_intlv_ctl = FSL_DDR_CS0_CS1;
dd50af25
KG
1199 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
1200 "cs2_cs3", buf))
c9ffd839 1201 popts->ba_intlv_ctl = FSL_DDR_CS2_CS3;
dd50af25
KG
1202 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
1203 "cs0_cs1_and_cs2_cs3", buf))
c9ffd839 1204 popts->ba_intlv_ctl = FSL_DDR_CS0_CS1_AND_CS2_CS3;
dd50af25
KG
1205 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
1206 "cs0_cs1_cs2_cs3", buf))
c9ffd839 1207 popts->ba_intlv_ctl = FSL_DDR_CS0_CS1_CS2_CS3;
89b78095
YS
1208 else if (hwconfig_subarg_cmp_f("fsl_ddr", "bank_intlv",
1209 "auto", buf))
1210 popts->ba_intlv_ctl = auto_bank_intlv(pdimm);
c9ffd839 1211 else
076bff8f 1212 printf("hwconfig has unrecognized parameter for bank_intlv.\n");
c9ffd839
HW
1213 switch (popts->ba_intlv_ctl & FSL_DDR_CS0_CS1_CS2_CS3) {
1214 case FSL_DDR_CS0_CS1_CS2_CS3:
076bff8f 1215#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
5800e7ab 1216 if (pdimm[0].n_ranks < 4) {
076bff8f
YS
1217 popts->ba_intlv_ctl = 0;
1218 printf("Not enough bank(chip-select) for "
1219 "CS0+CS1+CS2+CS3 on controller %d, "
a4c66509 1220 "interleaving disabled!\n", ctrl_num);
076bff8f
YS
1221 }
1222#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
123922b1
YS
1223#ifdef CONFIG_FSL_DDR_FIRST_SLOT_QUAD_CAPABLE
1224 if (pdimm[0].n_ranks == 4)
1225 break;
1226#endif
5800e7ab 1227 if ((pdimm[0].n_ranks < 2) && (pdimm[1].n_ranks < 2)) {
076bff8f
YS
1228 popts->ba_intlv_ctl = 0;
1229 printf("Not enough bank(chip-select) for "
1230 "CS0+CS1+CS2+CS3 on controller %d, "
a4c66509 1231 "interleaving disabled!\n", ctrl_num);
076bff8f
YS
1232 }
1233 if (pdimm[0].capacity != pdimm[1].capacity) {
1234 popts->ba_intlv_ctl = 0;
1235 printf("Not identical DIMM size for "
1236 "CS0+CS1+CS2+CS3 on controller %d, "
a4c66509 1237 "interleaving disabled!\n", ctrl_num);
076bff8f
YS
1238 }
1239#endif
1240 break;
c9ffd839 1241 case FSL_DDR_CS0_CS1:
5800e7ab 1242 if (pdimm[0].n_ranks < 2) {
c9ffd839 1243 popts->ba_intlv_ctl = 0;
7008d26a 1244 printf("Not enough bank(chip-select) for "
076bff8f 1245 "CS0+CS1 on controller %d, "
a4c66509 1246 "interleaving disabled!\n", ctrl_num);
c9ffd839
HW
1247 }
1248 break;
1249 case FSL_DDR_CS2_CS3:
076bff8f 1250#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
5800e7ab 1251 if (pdimm[0].n_ranks < 4) {
076bff8f
YS
1252 popts->ba_intlv_ctl = 0;
1253 printf("Not enough bank(chip-select) for CS2+CS3 "
a4c66509 1254 "on controller %d, interleaving disabled!\n", ctrl_num);
076bff8f
YS
1255 }
1256#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
5800e7ab 1257 if (pdimm[1].n_ranks < 2) {
c9ffd839 1258 popts->ba_intlv_ctl = 0;
076bff8f 1259 printf("Not enough bank(chip-select) for CS2+CS3 "
a4c66509 1260 "on controller %d, interleaving disabled!\n", ctrl_num);
c9ffd839 1261 }
076bff8f 1262#endif
c9ffd839
HW
1263 break;
1264 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
076bff8f 1265#if (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
5800e7ab 1266 if (pdimm[0].n_ranks < 4) {
076bff8f
YS
1267 popts->ba_intlv_ctl = 0;
1268 printf("Not enough bank(CS) for CS0+CS1 and "
1269 "CS2+CS3 on controller %d, "
a4c66509 1270 "interleaving disabled!\n", ctrl_num);
076bff8f
YS
1271 }
1272#elif (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
5800e7ab 1273 if ((pdimm[0].n_ranks < 2) || (pdimm[1].n_ranks < 2)) {
c9ffd839 1274 popts->ba_intlv_ctl = 0;
076bff8f
YS
1275 printf("Not enough bank(CS) for CS0+CS1 and "
1276 "CS2+CS3 on controller %d, "
a4c66509 1277 "interleaving disabled!\n", ctrl_num);
c9ffd839 1278 }
076bff8f 1279#endif
c9ffd839
HW
1280 break;
1281 default:
1282 popts->ba_intlv_ctl = 0;
1283 break;
1284 }
1285 }
58e5e9af 1286
dd50af25
KG
1287 if (hwconfig_sub_f("fsl_ddr", "addr_hash", buf)) {
1288 if (hwconfig_subarg_cmp_f("fsl_ddr", "addr_hash", "null", buf))
7fd101c9 1289 popts->addr_hash = 0;
dd50af25
KG
1290 else if (hwconfig_subarg_cmp_f("fsl_ddr", "addr_hash",
1291 "true", buf))
7fd101c9
YS
1292 popts->addr_hash = 1;
1293 }
1294
5800e7ab
YS
1295 if (pdimm[0].n_ranks == 4)
1296 popts->quad_rank_present = 1;
1297
c0c32af0
YS
1298 popts->package_3ds = pdimm->package_3ds;
1299
564e9383 1300#if (CONFIG_FSL_SDRAM_TYPE != SDRAM_TYPE_DDR4)
03e664d8 1301 ddr_freq = get_ddr_freq(ctrl_num) / 1000000;
cda1de21
YS
1302 if (popts->registered_dimm_en) {
1303 popts->rcw_override = 1;
1304 popts->rcw_1 = 0x000a5a00;
1305 if (ddr_freq <= 800)
1306 popts->rcw_2 = 0x00000000;
1307 else if (ddr_freq <= 1066)
1308 popts->rcw_2 = 0x00100000;
1309 else if (ddr_freq <= 1333)
1310 popts->rcw_2 = 0x00200000;
1311 else
1312 popts->rcw_2 = 0x00300000;
1313 }
564e9383 1314#endif
cda1de21 1315
dfb49108 1316 fsl_ddr_board_options(popts, pdimm, ctrl_num);
58e5e9af
KG
1317
1318 return 0;
1319}
076bff8f
YS
1320
1321void check_interleaving_options(fsl_ddr_info_t *pinfo)
1322{
a4c66509
YS
1323 int i, j, k, check_n_ranks, intlv_invalid = 0;
1324 unsigned int check_intlv, check_n_row_addr, check_n_col_addr;
076bff8f 1325 unsigned long long check_rank_density;
a4c66509 1326 struct dimm_params_s *dimm;
1d71efbb
YS
1327 int first_ctrl = pinfo->first_ctrl;
1328 int last_ctrl = first_ctrl + pinfo->num_ctrls - 1;
1329
076bff8f
YS
1330 /*
1331 * Check if all controllers are configured for memory
1332 * controller interleaving. Identical dimms are recommended. At least
a4c66509 1333 * the size, row and col address should be checked.
076bff8f
YS
1334 */
1335 j = 0;
1d71efbb
YS
1336 check_n_ranks = pinfo->dimm_params[first_ctrl][0].n_ranks;
1337 check_rank_density = pinfo->dimm_params[first_ctrl][0].rank_density;
1338 check_n_row_addr = pinfo->dimm_params[first_ctrl][0].n_row_addr;
1339 check_n_col_addr = pinfo->dimm_params[first_ctrl][0].n_col_addr;
1340 check_intlv = pinfo->memctl_opts[first_ctrl].memctl_interleaving_mode;
1341 for (i = first_ctrl; i <= last_ctrl; i++) {
a4c66509
YS
1342 dimm = &pinfo->dimm_params[i][0];
1343 if (!pinfo->memctl_opts[i].memctl_interleaving) {
1344 continue;
1345 } else if (((check_rank_density != dimm->rank_density) ||
1346 (check_n_ranks != dimm->n_ranks) ||
1347 (check_n_row_addr != dimm->n_row_addr) ||
1348 (check_n_col_addr != dimm->n_col_addr) ||
1349 (check_intlv !=
1350 pinfo->memctl_opts[i].memctl_interleaving_mode))){
1351 intlv_invalid = 1;
1352 break;
1353 } else {
076bff8f
YS
1354 j++;
1355 }
a4c66509 1356
076bff8f 1357 }
a4c66509 1358 if (intlv_invalid) {
1d71efbb 1359 for (i = first_ctrl; i <= last_ctrl; i++)
a4c66509
YS
1360 pinfo->memctl_opts[i].memctl_interleaving = 0;
1361 printf("Not all DIMMs are identical. "
1362 "Memory controller interleaving disabled.\n");
1363 } else {
1364 switch (check_intlv) {
6b1e1254 1365 case FSL_DDR_256B_INTERLEAVING:
a4c66509
YS
1366 case FSL_DDR_CACHE_LINE_INTERLEAVING:
1367 case FSL_DDR_PAGE_INTERLEAVING:
1368 case FSL_DDR_BANK_INTERLEAVING:
1369 case FSL_DDR_SUPERBANK_INTERLEAVING:
51370d56 1370#if (3 == CONFIG_SYS_NUM_DDR_CTLRS)
a4c66509 1371 k = 2;
349689b8 1372#else
51370d56 1373 k = CONFIG_SYS_NUM_DDR_CTLRS;
349689b8 1374#endif
a4c66509
YS
1375 break;
1376 case FSL_DDR_3WAY_1KB_INTERLEAVING:
1377 case FSL_DDR_3WAY_4KB_INTERLEAVING:
1378 case FSL_DDR_3WAY_8KB_INTERLEAVING:
1379 case FSL_DDR_4WAY_1KB_INTERLEAVING:
1380 case FSL_DDR_4WAY_4KB_INTERLEAVING:
1381 case FSL_DDR_4WAY_8KB_INTERLEAVING:
1382 default:
51370d56 1383 k = CONFIG_SYS_NUM_DDR_CTLRS;
a4c66509
YS
1384 break;
1385 }
1386 debug("%d of %d controllers are interleaving.\n", j, k);
89b78095 1387 if (j && (j != k)) {
1d71efbb 1388 for (i = first_ctrl; i <= last_ctrl; i++)
076bff8f 1389 pinfo->memctl_opts[i].memctl_interleaving = 0;
1d71efbb
YS
1390 if ((last_ctrl - first_ctrl) > 1)
1391 puts("Not all controllers have compatible interleaving mode. All disabled.\n");
a4c66509 1392 }
076bff8f 1393 }
a4c66509 1394 debug("Checking interleaving options completed\n");
076bff8f 1395}
3dbd5d7d
KG
1396
1397int fsl_use_spd(void)
1398{
1399 int use_spd = 0;
1400
1401#ifdef CONFIG_DDR_SPD
dd50af25
KG
1402 char buffer[HWCONFIG_BUFFER_SIZE];
1403 char *buf = NULL;
1404
1405 /*
1406 * Extract hwconfig from environment since we have not properly setup
1407 * the environment but need it for ddr config params
1408 */
00caae6d 1409 if (env_get_f("hwconfig", buffer, sizeof(buffer)) > 0)
dd50af25
KG
1410 buf = buffer;
1411
3dbd5d7d 1412 /* if hwconfig is not enabled, or "sdram" is not defined, use spd */
dd50af25
KG
1413 if (hwconfig_sub_f("fsl_ddr", "sdram", buf)) {
1414 if (hwconfig_subarg_cmp_f("fsl_ddr", "sdram", "spd", buf))
3dbd5d7d 1415 use_spd = 1;
dd50af25
KG
1416 else if (hwconfig_subarg_cmp_f("fsl_ddr", "sdram",
1417 "fixed", buf))
3dbd5d7d
KG
1418 use_spd = 0;
1419 else
1420 use_spd = 1;
1421 } else
1422 use_spd = 1;
1423#endif
1424
1425 return use_spd;
1426}