2 * Copyright 2008-2012 Freescale Semiconductor, Inc.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * Version 2 as published by the Free Software Foundation.
10 * Generic driver for Freescale DDR/DDR2/DDR3 memory controller.
11 * Based on code from spd_sdram.c
12 * Author: James Yang [at freescale.com]
17 #include <fsl_ddr_sdram.h>
21 * CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY is the physical address from the view
22 * of DDR controllers. It is the same as CONFIG_SYS_DDR_SDRAM_BASE for
23 * all Power SoCs. But it could be different for ARM SoCs. For example,
24 * fsl_lsch3 has a mapping mechanism to map DDR memory to ranges (in order) of
25 * 0x00_8000_0000 ~ 0x00_ffff_ffff
26 * 0x80_8000_0000 ~ 0xff_ffff_ffff
28 #ifndef CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY
29 #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY CONFIG_SYS_DDR_SDRAM_BASE
33 #include <asm/fsl_law.h>
35 void fsl_ddr_set_lawbar(
36 const common_timing_params_t
*memctl_common_params
,
37 unsigned int memctl_interleaved
,
38 unsigned int ctrl_num
);
41 void fsl_ddr_set_intl3r(const unsigned int granule_size
);
42 #if defined(SPD_EEPROM_ADDRESS) || \
43 defined(SPD_EEPROM_ADDRESS1) || defined(SPD_EEPROM_ADDRESS2) || \
44 defined(SPD_EEPROM_ADDRESS3) || defined(SPD_EEPROM_ADDRESS4)
45 #if (CONFIG_NUM_DDR_CONTROLLERS == 1) && (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
46 u8 spd_i2c_addr
[CONFIG_NUM_DDR_CONTROLLERS
][CONFIG_DIMM_SLOTS_PER_CTLR
] = {
47 [0][0] = SPD_EEPROM_ADDRESS
,
49 #elif (CONFIG_NUM_DDR_CONTROLLERS == 1) && (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
50 u8 spd_i2c_addr
[CONFIG_NUM_DDR_CONTROLLERS
][CONFIG_DIMM_SLOTS_PER_CTLR
] = {
51 [0][0] = SPD_EEPROM_ADDRESS1
, /* controller 1 */
52 [0][1] = SPD_EEPROM_ADDRESS2
, /* controller 1 */
54 #elif (CONFIG_NUM_DDR_CONTROLLERS == 2) && (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
55 u8 spd_i2c_addr
[CONFIG_NUM_DDR_CONTROLLERS
][CONFIG_DIMM_SLOTS_PER_CTLR
] = {
56 [0][0] = SPD_EEPROM_ADDRESS1
, /* controller 1 */
57 [1][0] = SPD_EEPROM_ADDRESS2
, /* controller 2 */
59 #elif (CONFIG_NUM_DDR_CONTROLLERS == 2) && (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
60 u8 spd_i2c_addr
[CONFIG_NUM_DDR_CONTROLLERS
][CONFIG_DIMM_SLOTS_PER_CTLR
] = {
61 [0][0] = SPD_EEPROM_ADDRESS1
, /* controller 1 */
62 [0][1] = SPD_EEPROM_ADDRESS2
, /* controller 1 */
63 [1][0] = SPD_EEPROM_ADDRESS3
, /* controller 2 */
64 [1][1] = SPD_EEPROM_ADDRESS4
, /* controller 2 */
66 #elif (CONFIG_NUM_DDR_CONTROLLERS == 3) && (CONFIG_DIMM_SLOTS_PER_CTLR == 1)
67 u8 spd_i2c_addr
[CONFIG_NUM_DDR_CONTROLLERS
][CONFIG_DIMM_SLOTS_PER_CTLR
] = {
68 [0][0] = SPD_EEPROM_ADDRESS1
, /* controller 1 */
69 [1][0] = SPD_EEPROM_ADDRESS2
, /* controller 2 */
70 [2][0] = SPD_EEPROM_ADDRESS3
, /* controller 3 */
72 #elif (CONFIG_NUM_DDR_CONTROLLERS == 3) && (CONFIG_DIMM_SLOTS_PER_CTLR == 2)
73 u8 spd_i2c_addr
[CONFIG_NUM_DDR_CONTROLLERS
][CONFIG_DIMM_SLOTS_PER_CTLR
] = {
74 [0][0] = SPD_EEPROM_ADDRESS1
, /* controller 1 */
75 [0][1] = SPD_EEPROM_ADDRESS2
, /* controller 1 */
76 [1][0] = SPD_EEPROM_ADDRESS3
, /* controller 2 */
77 [1][1] = SPD_EEPROM_ADDRESS4
, /* controller 2 */
78 [2][0] = SPD_EEPROM_ADDRESS5
, /* controller 3 */
79 [2][1] = SPD_EEPROM_ADDRESS6
, /* controller 3 */
84 static void __get_spd(generic_spd_eeprom_t
*spd
, u8 i2c_address
)
88 i2c_set_bus_num(CONFIG_SYS_SPD_BUS_NUM
);
90 ret
= i2c_read(i2c_address
, 0, 1, (uchar
*)spd
,
91 sizeof(generic_spd_eeprom_t
));
95 #ifdef SPD_EEPROM_ADDRESS
97 #elif defined(SPD_EEPROM_ADDRESS1)
101 printf("DDR: failed to read SPD from address %u\n",
104 debug("DDR: failed to read SPD from address %u\n",
107 memset(spd
, 0, sizeof(generic_spd_eeprom_t
));
111 __attribute__((weak
, alias("__get_spd")))
112 void get_spd(generic_spd_eeprom_t
*spd
, u8 i2c_address
);
114 void fsl_ddr_get_spd(generic_spd_eeprom_t
*ctrl_dimms_spd
,
115 unsigned int ctrl_num
)
118 unsigned int i2c_address
= 0;
120 if (ctrl_num
>= CONFIG_NUM_DDR_CONTROLLERS
) {
121 printf("%s unexpected ctrl_num = %u\n", __FUNCTION__
, ctrl_num
);
125 for (i
= 0; i
< CONFIG_DIMM_SLOTS_PER_CTLR
; i
++) {
126 i2c_address
= spd_i2c_addr
[ctrl_num
][i
];
127 get_spd(&(ctrl_dimms_spd
[i
]), i2c_address
);
131 void fsl_ddr_get_spd(generic_spd_eeprom_t
*ctrl_dimms_spd
,
132 unsigned int ctrl_num
)
135 #endif /* SPD_EEPROM_ADDRESSx */
139 * - Same number of CONFIG_DIMM_SLOTS_PER_CTLR on each controller
140 * - Same memory data bus width on all controllers
144 * The memory controller and associated documentation use confusing
145 * terminology when referring to the orgranization of DRAM.
147 * Here is a terminology translation table:
149 * memory controller/documention |industry |this code |signals
150 * -------------------------------|-----------|-----------|-----------------
151 * physical bank/bank |rank |rank |chip select (CS)
152 * logical bank/sub-bank |bank |bank |bank address (BA)
153 * page/row |row |page |row address
154 * ??? |column |column |column address
156 * The naming confusion is further exacerbated by the descriptions of the
157 * memory controller interleaving feature, where accesses are interleaved
158 * _BETWEEN_ two seperate memory controllers. This is configured only in
159 * CS0_CONFIG[INTLV_CTL] of each memory controller.
161 * memory controller documentation | number of chip selects
162 * | per memory controller supported
163 * --------------------------------|-----------------------------------------
164 * cache line interleaving | 1 (CS0 only)
165 * page interleaving | 1 (CS0 only)
166 * bank interleaving | 1 (CS0 only)
167 * superbank interleraving | depends on bank (chip select)
168 * | interleraving [rank interleaving]
169 * | mode used on every memory controller
171 * Even further confusing is the existence of the interleaving feature
172 * _WITHIN_ each memory controller. The feature is referred to in
173 * documentation as chip select interleaving or bank interleaving,
174 * although it is configured in the DDR_SDRAM_CFG field.
176 * Name of field | documentation name | this code
177 * -----------------------------|-----------------------|------------------
178 * DDR_SDRAM_CFG[BA_INTLV_CTL] | Bank (chip select) | rank interleaving
182 const char *step_string_tbl
[] = {
184 "STEP_COMPUTE_DIMM_PARMS",
185 "STEP_COMPUTE_COMMON_PARMS",
187 "STEP_ASSIGN_ADDRESSES",
193 const char * step_to_string(unsigned int step
) {
195 unsigned int s
= __ilog2(step
);
197 if ((1 << s
) != step
)
198 return step_string_tbl
[7];
200 return step_string_tbl
[s
];
203 static unsigned long long __step_assign_addresses(fsl_ddr_info_t
*pinfo
,
204 unsigned int dbw_cap_adj
[])
207 unsigned long long total_mem
, current_mem_base
, total_ctlr_mem
;
208 unsigned long long rank_density
, ctlr_density
= 0;
211 * If a reduced data width is requested, but the SPD
212 * specifies a physically wider device, adjust the
213 * computed dimm capacities accordingly before
214 * assigning addresses.
216 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
217 unsigned int found
= 0;
219 switch (pinfo
->memctl_opts
[i
].data_bus_width
) {
222 for (j
= 0; j
< CONFIG_DIMM_SLOTS_PER_CTLR
; j
++) {
224 if (!pinfo
->dimm_params
[i
][j
].n_ranks
)
226 dw
= pinfo
->dimm_params
[i
][j
].primary_sdram_width
;
227 if ((dw
== 72 || dw
== 64)) {
230 } else if ((dw
== 40 || dw
== 32)) {
239 for (j
= 0; j
< CONFIG_DIMM_SLOTS_PER_CTLR
; j
++) {
241 dw
= pinfo
->dimm_params
[i
][j
].data_width
;
242 if (pinfo
->dimm_params
[i
][j
].n_ranks
243 && (dw
== 72 || dw
== 64)) {
245 * FIXME: can't really do it
246 * like this because this just
247 * further reduces the memory
263 printf("unexpected data bus width "
264 "specified controller %u\n", i
);
267 debug("dbw_cap_adj[%d]=%d\n", i
, dbw_cap_adj
[i
]);
270 current_mem_base
= CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY
;
272 if (pinfo
->memctl_opts
[0].memctl_interleaving
) {
273 rank_density
= pinfo
->dimm_params
[0][0].rank_density
>>
275 switch (pinfo
->memctl_opts
[0].ba_intlv_ctl
&
276 FSL_DDR_CS0_CS1_CS2_CS3
) {
277 case FSL_DDR_CS0_CS1_CS2_CS3
:
278 ctlr_density
= 4 * rank_density
;
280 case FSL_DDR_CS0_CS1
:
281 case FSL_DDR_CS0_CS1_AND_CS2_CS3
:
282 ctlr_density
= 2 * rank_density
;
284 case FSL_DDR_CS2_CS3
:
286 ctlr_density
= rank_density
;
289 debug("rank density is 0x%llx, ctlr density is 0x%llx\n",
290 rank_density
, ctlr_density
);
291 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
292 if (pinfo
->memctl_opts
[i
].memctl_interleaving
) {
293 switch (pinfo
->memctl_opts
[i
].memctl_interleaving_mode
) {
294 case FSL_DDR_256B_INTERLEAVING
:
295 case FSL_DDR_CACHE_LINE_INTERLEAVING
:
296 case FSL_DDR_PAGE_INTERLEAVING
:
297 case FSL_DDR_BANK_INTERLEAVING
:
298 case FSL_DDR_SUPERBANK_INTERLEAVING
:
299 total_ctlr_mem
= 2 * ctlr_density
;
301 case FSL_DDR_3WAY_1KB_INTERLEAVING
:
302 case FSL_DDR_3WAY_4KB_INTERLEAVING
:
303 case FSL_DDR_3WAY_8KB_INTERLEAVING
:
304 total_ctlr_mem
= 3 * ctlr_density
;
306 case FSL_DDR_4WAY_1KB_INTERLEAVING
:
307 case FSL_DDR_4WAY_4KB_INTERLEAVING
:
308 case FSL_DDR_4WAY_8KB_INTERLEAVING
:
309 total_ctlr_mem
= 4 * ctlr_density
;
312 panic("Unknown interleaving mode");
314 pinfo
->common_timing_params
[i
].base_address
=
316 pinfo
->common_timing_params
[i
].total_mem
=
318 total_mem
= current_mem_base
+ total_ctlr_mem
;
319 debug("ctrl %d base 0x%llx\n", i
, current_mem_base
);
320 debug("ctrl %d total 0x%llx\n", i
, total_ctlr_mem
);
322 /* when 3rd controller not interleaved */
323 current_mem_base
= total_mem
;
325 pinfo
->common_timing_params
[i
].base_address
=
327 for (j
= 0; j
< CONFIG_DIMM_SLOTS_PER_CTLR
; j
++) {
328 unsigned long long cap
=
329 pinfo
->dimm_params
[i
][j
].capacity
>> dbw_cap_adj
[i
];
330 pinfo
->dimm_params
[i
][j
].base_address
=
332 debug("ctrl %d dimm %d base 0x%llx\n", i
, j
, current_mem_base
);
333 current_mem_base
+= cap
;
334 total_ctlr_mem
+= cap
;
336 debug("ctrl %d total 0x%llx\n", i
, total_ctlr_mem
);
337 pinfo
->common_timing_params
[i
].total_mem
=
339 total_mem
+= total_ctlr_mem
;
344 * Simple linear assignment if memory
345 * controllers are not interleaved.
347 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
349 pinfo
->common_timing_params
[i
].base_address
=
351 for (j
= 0; j
< CONFIG_DIMM_SLOTS_PER_CTLR
; j
++) {
352 /* Compute DIMM base addresses. */
353 unsigned long long cap
=
354 pinfo
->dimm_params
[i
][j
].capacity
>> dbw_cap_adj
[i
];
355 pinfo
->dimm_params
[i
][j
].base_address
=
357 debug("ctrl %d dimm %d base 0x%llx\n", i
, j
, current_mem_base
);
358 current_mem_base
+= cap
;
359 total_ctlr_mem
+= cap
;
361 debug("ctrl %d total 0x%llx\n", i
, total_ctlr_mem
);
362 pinfo
->common_timing_params
[i
].total_mem
=
364 total_mem
+= total_ctlr_mem
;
367 debug("Total mem by %s is 0x%llx\n", __func__
, total_mem
);
372 /* Use weak function to allow board file to override the address assignment */
373 __attribute__((weak
, alias("__step_assign_addresses")))
374 unsigned long long step_assign_addresses(fsl_ddr_info_t
*pinfo
,
375 unsigned int dbw_cap_adj
[]);
378 fsl_ddr_compute(fsl_ddr_info_t
*pinfo
, unsigned int start_step
,
379 unsigned int size_only
)
382 unsigned long long total_mem
= 0;
385 fsl_ddr_cfg_regs_t
*ddr_reg
= pinfo
->fsl_ddr_config_reg
;
386 common_timing_params_t
*timing_params
= pinfo
->common_timing_params
;
387 assert_reset
= board_need_mem_reset();
389 /* data bus width capacity adjust shift amount */
390 unsigned int dbw_capacity_adjust
[CONFIG_NUM_DDR_CONTROLLERS
];
392 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
393 dbw_capacity_adjust
[i
] = 0;
396 debug("starting at step %u (%s)\n",
397 start_step
, step_to_string(start_step
));
399 switch (start_step
) {
401 #if defined(CONFIG_DDR_SPD) || defined(CONFIG_SPD_EEPROM)
402 /* STEP 1: Gather all DIMM SPD data */
403 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
404 fsl_ddr_get_spd(pinfo
->spd_installed_dimms
[i
], i
);
407 case STEP_COMPUTE_DIMM_PARMS
:
408 /* STEP 2: Compute DIMM parameters from SPD data */
410 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
411 for (j
= 0; j
< CONFIG_DIMM_SLOTS_PER_CTLR
; j
++) {
413 generic_spd_eeprom_t
*spd
=
414 &(pinfo
->spd_installed_dimms
[i
][j
]);
415 dimm_params_t
*pdimm
=
416 &(pinfo
->dimm_params
[i
][j
]);
418 retval
= compute_dimm_parameters(spd
, pdimm
, i
);
419 #ifdef CONFIG_SYS_DDR_RAW_TIMING
420 if (!i
&& !j
&& retval
) {
421 printf("SPD error on controller %d! "
422 "Trying fallback to raw timing "
424 fsl_ddr_get_dimm_params(pdimm
, i
, j
);
428 printf("Error: compute_dimm_parameters"
429 " non-zero returned FATAL value "
430 "for memctl=%u dimm=%u\n", i
, j
);
435 debug("Warning: compute_dimm_parameters"
436 " non-zero return value for memctl=%u "
442 #elif defined(CONFIG_SYS_DDR_RAW_TIMING)
443 case STEP_COMPUTE_DIMM_PARMS
:
444 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
445 for (j
= 0; j
< CONFIG_DIMM_SLOTS_PER_CTLR
; j
++) {
446 dimm_params_t
*pdimm
=
447 &(pinfo
->dimm_params
[i
][j
]);
448 fsl_ddr_get_dimm_params(pdimm
, i
, j
);
451 debug("Filling dimm parameters from board specific file\n");
453 case STEP_COMPUTE_COMMON_PARMS
:
455 * STEP 3: Compute a common set of timing parameters
456 * suitable for all of the DIMMs on each memory controller
458 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
459 debug("Computing lowest common DIMM"
460 " parameters for memctl=%u\n", i
);
461 compute_lowest_common_dimm_parameters(
462 pinfo
->dimm_params
[i
],
464 CONFIG_DIMM_SLOTS_PER_CTLR
);
467 case STEP_GATHER_OPTS
:
468 /* STEP 4: Gather configuration requirements from user */
469 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
470 debug("Reloading memory controller "
471 "configuration options for memctl=%u\n", i
);
473 * This "reloads" the memory controller options
474 * to defaults. If the user "edits" an option,
475 * next_step points to the step after this,
476 * which is currently STEP_ASSIGN_ADDRESSES.
478 populate_memctl_options(
479 timing_params
[i
].all_dimms_registered
,
480 &pinfo
->memctl_opts
[i
],
481 pinfo
->dimm_params
[i
], i
);
483 * For RDIMMs, JEDEC spec requires clocks to be stable
484 * before reset signal is deasserted. For the boards
485 * using fixed parameters, this function should be
486 * be called from board init file.
488 if (timing_params
[i
].all_dimms_registered
)
492 debug("Asserting mem reset\n");
493 board_assert_mem_reset();
496 case STEP_ASSIGN_ADDRESSES
:
497 /* STEP 5: Assign addresses to chip selects */
498 check_interleaving_options(pinfo
);
499 total_mem
= step_assign_addresses(pinfo
, dbw_capacity_adjust
);
501 case STEP_COMPUTE_REGS
:
502 /* STEP 6: compute controller register values */
503 debug("FSL Memory ctrl register computation\n");
504 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
505 if (timing_params
[i
].ndimms_present
== 0) {
506 memset(&ddr_reg
[i
], 0,
507 sizeof(fsl_ddr_cfg_regs_t
));
511 compute_fsl_memctl_config_regs(
512 &pinfo
->memctl_opts
[i
],
513 &ddr_reg
[i
], &timing_params
[i
],
514 pinfo
->dimm_params
[i
],
515 dbw_capacity_adjust
[i
],
525 * Compute the amount of memory available just by
526 * looking for the highest valid CSn_BNDS value.
527 * This allows us to also experiment with using
528 * only CS0 when using dual-rank DIMMs.
530 unsigned int max_end
= 0;
532 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
533 for (j
= 0; j
< CONFIG_CHIP_SELECTS_PER_CTRL
; j
++) {
534 fsl_ddr_cfg_regs_t
*reg
= &ddr_reg
[i
];
535 if (reg
->cs
[j
].config
& 0x80000000) {
538 * 0xfffffff is a special value we put
541 if (reg
->cs
[j
].bnds
== 0xffffffff)
543 end
= reg
->cs
[j
].bnds
& 0xffff;
551 total_mem
= 1 + (((unsigned long long)max_end
<< 24ULL) |
552 0xFFFFFFULL
) - CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY
;
559 * fsl_ddr_sdram() -- this is the main function to be called by
560 * initdram() in the board file.
562 * It returns amount of memory configured in bytes.
564 phys_size_t
fsl_ddr_sdram(void)
568 unsigned int law_memctl
= LAW_TRGT_IF_DDR_1
;
570 unsigned long long total_memory
;
574 /* Reset info structure. */
575 memset(&info
, 0, sizeof(fsl_ddr_info_t
));
577 /* Compute it once normally. */
578 #ifdef CONFIG_FSL_DDR_INTERACTIVE
579 if (tstc() && (getc() == 'd')) { /* we got a key press of 'd' */
580 total_memory
= fsl_ddr_interactive(&info
, 0);
581 } else if (fsl_ddr_interactive_env_var_exists()) {
582 total_memory
= fsl_ddr_interactive(&info
, 1);
585 total_memory
= fsl_ddr_compute(&info
, STEP_GET_SPD
, 0);
587 /* setup 3-way interleaving before enabling DDRC */
588 if (info
.memctl_opts
[0].memctl_interleaving
) {
589 switch (info
.memctl_opts
[0].memctl_interleaving_mode
) {
590 case FSL_DDR_3WAY_1KB_INTERLEAVING
:
591 case FSL_DDR_3WAY_4KB_INTERLEAVING
:
592 case FSL_DDR_3WAY_8KB_INTERLEAVING
:
594 info
.memctl_opts
[0].memctl_interleaving_mode
);
602 * Program configuration registers.
603 * JEDEC specs requires clocks to be stable before deasserting reset
604 * for RDIMMs. Clocks start after chip select is enabled and clock
605 * control register is set. During step 1, all controllers have their
606 * registers set but not enabled. Step 2 proceeds after deasserting
607 * reset through board FPGA or GPIO.
608 * For non-registered DIMMs, initialization can go through but it is
609 * also OK to follow the same flow.
611 deassert_reset
= board_need_mem_reset();
612 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
613 if (info
.common_timing_params
[i
].all_dimms_registered
)
616 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
617 debug("Programming controller %u\n", i
);
618 if (info
.common_timing_params
[i
].ndimms_present
== 0) {
619 debug("No dimms present on controller %u; "
620 "skipping programming\n", i
);
624 * The following call with step = 1 returns before enabling
625 * the controller. It has to finish with step = 2 later.
627 fsl_ddr_set_memctl_regs(&(info
.fsl_ddr_config_reg
[i
]), i
,
628 deassert_reset
? 1 : 0);
630 if (deassert_reset
) {
631 /* Use board FPGA or GPIO to deassert reset signal */
632 debug("Deasserting mem reset\n");
633 board_deassert_mem_reset();
634 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
635 /* Call with step = 2 to continue initialization */
636 fsl_ddr_set_memctl_regs(&(info
.fsl_ddr_config_reg
[i
]),
643 for (i
= 0; i
< CONFIG_NUM_DDR_CONTROLLERS
; i
++) {
644 if (info
.memctl_opts
[i
].memctl_interleaving
) {
645 switch (info
.memctl_opts
[i
].memctl_interleaving_mode
) {
646 case FSL_DDR_CACHE_LINE_INTERLEAVING
:
647 case FSL_DDR_PAGE_INTERLEAVING
:
648 case FSL_DDR_BANK_INTERLEAVING
:
649 case FSL_DDR_SUPERBANK_INTERLEAVING
:
651 law_memctl
= LAW_TRGT_IF_DDR_INTRLV
;
652 fsl_ddr_set_lawbar(&info
.common_timing_params
[i
],
655 law_memctl
= LAW_TRGT_IF_DDR_INTLV_34
;
656 fsl_ddr_set_lawbar(&info
.common_timing_params
[i
],
660 case FSL_DDR_3WAY_1KB_INTERLEAVING
:
661 case FSL_DDR_3WAY_4KB_INTERLEAVING
:
662 case FSL_DDR_3WAY_8KB_INTERLEAVING
:
663 law_memctl
= LAW_TRGT_IF_DDR_INTLV_123
;
665 fsl_ddr_set_lawbar(&info
.common_timing_params
[i
],
669 case FSL_DDR_4WAY_1KB_INTERLEAVING
:
670 case FSL_DDR_4WAY_4KB_INTERLEAVING
:
671 case FSL_DDR_4WAY_8KB_INTERLEAVING
:
672 law_memctl
= LAW_TRGT_IF_DDR_INTLV_1234
;
674 fsl_ddr_set_lawbar(&info
.common_timing_params
[i
],
676 /* place holder for future 4-way interleaving */
684 law_memctl
= LAW_TRGT_IF_DDR_1
;
687 law_memctl
= LAW_TRGT_IF_DDR_2
;
690 law_memctl
= LAW_TRGT_IF_DDR_3
;
693 law_memctl
= LAW_TRGT_IF_DDR_4
;
698 fsl_ddr_set_lawbar(&info
.common_timing_params
[i
],
704 debug("total_memory by %s = %llu\n", __func__
, total_memory
);
706 #if !defined(CONFIG_PHYS_64BIT)
707 /* Check for 4G or more. Bad. */
708 if (total_memory
>= (1ull << 32)) {
710 print_size(total_memory
, " of memory\n");
711 printf(" This U-Boot only supports < 4G of DDR\n");
712 printf(" You could rebuild it with CONFIG_PHYS_64BIT\n");
713 printf(" "); /* re-align to match init_func_ram print */
714 total_memory
= CONFIG_MAX_MEM_MAPPED
;
722 * fsl_ddr_sdram_size() - This function only returns the size of the total
723 * memory without setting ddr control registers.
726 fsl_ddr_sdram_size(void)
729 unsigned long long total_memory
= 0;
731 memset(&info
, 0 , sizeof(fsl_ddr_info_t
));
733 /* Compute it once normally. */
734 total_memory
= fsl_ddr_compute(&info
, STEP_GET_SPD
, 1);