2 * Copyright 2008 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]
16 #include <asm/fsl_ddr_sdram.h>
20 extern void fsl_ddr_set_lawbar(
21 const common_timing_params_t *memctl_common_params,
22 unsigned int memctl_interleaved,
23 unsigned int ctrl_num);
25 /* processor specific function */
26 extern void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs,
27 unsigned int ctrl_num);
29 /* Board-specific functions defined in each board's ddr.c */
30 extern void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
31 unsigned int ctrl_num);
35 * - Same number of CONFIG_DIMM_SLOTS_PER_CTLR on each controller
36 * - Same memory data bus width on all controllers
40 * The memory controller and associated documentation use confusing
41 * terminology when referring to the orgranization of DRAM.
43 * Here is a terminology translation table:
45 * memory controller/documention |industry |this code |signals
46 * -------------------------------|-----------|-----------|-----------------
47 * physical bank/bank |rank |rank |chip select (CS)
48 * logical bank/sub-bank |bank |bank |bank address (BA)
49 * page/row |row |page |row address
50 * ??? |column |column |column address
52 * The naming confusion is further exacerbated by the descriptions of the
53 * memory controller interleaving feature, where accesses are interleaved
54 * _BETWEEN_ two seperate memory controllers. This is configured only in
55 * CS0_CONFIG[INTLV_CTL] of each memory controller.
57 * memory controller documentation | number of chip selects
58 * | per memory controller supported
59 * --------------------------------|-----------------------------------------
60 * cache line interleaving | 1 (CS0 only)
61 * page interleaving | 1 (CS0 only)
62 * bank interleaving | 1 (CS0 only)
63 * superbank interleraving | depends on bank (chip select)
64 * | interleraving [rank interleaving]
65 * | mode used on every memory controller
67 * Even further confusing is the existence of the interleaving feature
68 * _WITHIN_ each memory controller. The feature is referred to in
69 * documentation as chip select interleaving or bank interleaving,
70 * although it is configured in the DDR_SDRAM_CFG field.
72 * Name of field | documentation name | this code
73 * -----------------------------|-----------------------|------------------
74 * DDR_SDRAM_CFG[BA_INTLV_CTL] | Bank (chip select) | rank interleaving
79 const char *step_string_tbl[] = {
81 "STEP_COMPUTE_DIMM_PARMS",
82 "STEP_COMPUTE_COMMON_PARMS",
84 "STEP_ASSIGN_ADDRESSES",
90 const char * step_to_string(unsigned int step) {
92 unsigned int s = __ilog2(step);
95 return step_string_tbl[7];
97 return step_string_tbl[s];
101 int step_assign_addresses(fsl_ddr_info_t *pinfo,
102 unsigned int dbw_cap_adj[],
103 unsigned int *memctl_interleaving,
104 unsigned int *rank_interleaving)
109 * If a reduced data width is requested, but the SPD
110 * specifies a physically wider device, adjust the
111 * computed dimm capacities accordingly before
112 * assigning addresses.
114 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
115 unsigned int found = 0;
117 switch (pinfo->memctl_opts[i].data_bus_width) {
120 printf("can't handle 16-bit mode yet\n");
125 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
127 dw = pinfo->dimm_params[i][j].data_width;
128 if (pinfo->dimm_params[i][j].n_ranks
129 && (dw == 72 || dw == 64)) {
131 * FIXME: can't really do it
132 * like this because this just
133 * further reduces the memory
149 printf("unexpected data bus width "
150 "specified controller %u\n", i);
156 * Check if all controllers are configured for memory
157 * controller interleaving.
160 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
161 if (pinfo->memctl_opts[i].memctl_interleaving) {
166 *memctl_interleaving = 1;
169 /* Check that all controllers are rank interleaving. */
171 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
172 if (pinfo->memctl_opts[i].ba_intlv_ctl) {
177 *rank_interleaving = 1;
180 if (*memctl_interleaving) {
184 * If interleaving between memory controllers,
185 * make each controller start at a base address
188 * Also, if bank interleaving (chip select
189 * interleaving) is enabled on each memory
190 * controller, CS0 needs to be programmed to
191 * cover the entire memory range on that memory
194 * Bank interleaving also implies that each
195 * addressed chip select is identical in size.
198 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
200 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
201 unsigned long long cap
202 = pinfo->dimm_params[i][j].capacity;
204 pinfo->dimm_params[i][j].base_address = addr;
205 addr += (phys_addr_t)(cap >> dbw_cap_adj[i]);
210 * Simple linear assignment if memory
211 * controllers are not interleaved.
213 phys_size_t cur_memsize = 0;
214 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
215 phys_size_t total_mem_per_ctlr = 0;
216 pinfo->common_timing_params[i].base_address =
217 (phys_addr_t)cur_memsize;
218 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
219 /* Compute DIMM base addresses. */
220 unsigned long long cap =
221 pinfo->dimm_params[i][j].capacity;
223 pinfo->dimm_params[i][j].base_address =
224 (phys_addr_t)cur_memsize;
225 cur_memsize += cap >> dbw_cap_adj[i];
226 total_mem_per_ctlr += cap >> dbw_cap_adj[i];
228 pinfo->common_timing_params[i].total_mem =
237 fsl_ddr_compute(fsl_ddr_info_t *pinfo, unsigned int start_step)
240 unsigned int all_controllers_memctl_interleaving = 0;
241 unsigned int all_controllers_rank_interleaving = 0;
242 phys_size_t total_mem = 0;
244 fsl_ddr_cfg_regs_t *ddr_reg = pinfo->fsl_ddr_config_reg;
245 common_timing_params_t *timing_params = pinfo->common_timing_params;
247 /* data bus width capacity adjust shift amount */
248 unsigned int dbw_capacity_adjust[CONFIG_NUM_DDR_CONTROLLERS];
250 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
251 dbw_capacity_adjust[i] = 0;
254 debug("starting at step %u (%s)\n",
255 start_step, step_to_string(start_step));
257 switch (start_step) {
259 /* STEP 1: Gather all DIMM SPD data */
260 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
261 fsl_ddr_get_spd(pinfo->spd_installed_dimms[i], i);
264 case STEP_COMPUTE_DIMM_PARMS:
265 /* STEP 2: Compute DIMM parameters from SPD data */
267 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
268 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
270 generic_spd_eeprom_t *spd =
271 &(pinfo->spd_installed_dimms[i][j]);
272 dimm_params_t *pdimm =
273 &(pinfo->dimm_params[i][j]);
275 retval = compute_dimm_parameters(spd, pdimm, i);
277 printf("Error: compute_dimm_parameters"
278 " non-zero returned FATAL value "
279 "for memctl=%u dimm=%u\n", i, j);
283 debug("Warning: compute_dimm_parameters"
284 " non-zero return value for memctl=%u "
290 case STEP_COMPUTE_COMMON_PARMS:
292 * STEP 3: Compute a common set of timing parameters
293 * suitable for all of the DIMMs on each memory controller
295 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
296 debug("Computing lowest common DIMM"
297 " parameters for memctl=%u\n", i);
298 compute_lowest_common_dimm_parameters(
299 pinfo->dimm_params[i],
301 CONFIG_DIMM_SLOTS_PER_CTLR);
304 case STEP_GATHER_OPTS:
305 /* STEP 4: Gather configuration requirements from user */
306 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
307 debug("Reloading memory controller "
308 "configuration options for memctl=%u\n", i);
310 * This "reloads" the memory controller options
311 * to defaults. If the user "edits" an option,
312 * next_step points to the step after this,
313 * which is currently STEP_ASSIGN_ADDRESSES.
315 populate_memctl_options(
316 timing_params[i].all_DIMMs_registered,
317 &pinfo->memctl_opts[i], i);
320 case STEP_ASSIGN_ADDRESSES:
321 /* STEP 5: Assign addresses to chip selects */
322 step_assign_addresses(pinfo,
324 &all_controllers_memctl_interleaving,
325 &all_controllers_rank_interleaving);
327 case STEP_COMPUTE_REGS:
328 /* STEP 6: compute controller register values */
329 debug("FSL Memory ctrl cg register computation\n");
330 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
331 if (timing_params[i].ndimms_present == 0) {
332 memset(&ddr_reg[i], 0,
333 sizeof(fsl_ddr_cfg_regs_t));
337 compute_fsl_memctl_config_regs(
338 &pinfo->memctl_opts[i],
339 &ddr_reg[i], &timing_params[i],
340 pinfo->dimm_params[i],
341 dbw_capacity_adjust[i]);
348 /* Compute the total amount of memory. */
351 * If bank interleaving but NOT memory controller interleaving
352 * CS_BNDS describe the quantity of memory on each memory
353 * controller, so the total is the sum across.
355 if (!all_controllers_memctl_interleaving
356 && all_controllers_rank_interleaving) {
358 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
359 total_mem += timing_params[i].total_mem;
364 * Compute the amount of memory available just by
365 * looking for the highest valid CSn_BNDS value.
366 * This allows us to also experiment with using
367 * only CS0 when using dual-rank DIMMs.
369 unsigned int max_end = 0;
371 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
372 for (j = 0; j < CONFIG_CHIP_SELECTS_PER_CTRL; j++) {
373 fsl_ddr_cfg_regs_t *reg = &ddr_reg[i];
374 if (reg->cs[j].config & 0x80000000) {
376 end = reg->cs[j].bnds & 0xFFF;
384 #if !defined(CONFIG_PHYS_64BIT)
385 /* Check for 4G or more with a 32-bit phys_addr_t. Bad. */
386 if (max_end >= 0xff) {
387 printf("This U-Boot only supports < 4G of DDR\n");
388 printf("You could rebuild it with CONFIG_PHYS_64BIT\n");
389 return 0; /* Ensure DDR setup failure. */
393 total_mem = 1 + (((unsigned long long)max_end << 24ULL)
401 * fsl_ddr_sdram() -- this is the main function to be called by
402 * initdram() in the board file.
404 * It returns amount of memory configured in bytes.
406 phys_size_t fsl_ddr_sdram(void)
409 unsigned int memctl_interleaved;
410 phys_size_t total_memory;
413 /* Reset info structure. */
414 memset(&info, 0, sizeof(fsl_ddr_info_t));
416 /* Compute it once normally. */
417 total_memory = fsl_ddr_compute(&info, STEP_GET_SPD);
419 /* Check for memory controller interleaving. */
420 memctl_interleaved = 0;
421 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
422 memctl_interleaved +=
423 info.memctl_opts[i].memctl_interleaving;
426 if (memctl_interleaved) {
427 if (memctl_interleaved == CONFIG_NUM_DDR_CONTROLLERS) {
428 debug("memctl interleaving\n");
430 * Change the meaning of memctl_interleaved
433 memctl_interleaved = 1;
435 printf("Error: memctl interleaving not "
436 "properly configured on all controllers\n");
441 /* Program configuration registers. */
442 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
443 debug("Programming controller %u\n", i);
444 if (info.common_timing_params[i].ndimms_present == 0) {
445 debug("No dimms present on controller %u; "
446 "skipping programming\n", i);
450 fsl_ddr_set_memctl_regs(&(info.fsl_ddr_config_reg[i]), i);
453 if (memctl_interleaved) {
454 const unsigned int ctrl_num = 0;
456 /* Only set LAWBAR1 if memory controller interleaving is on. */
457 fsl_ddr_set_lawbar(&info.common_timing_params[0],
458 memctl_interleaved, ctrl_num);
461 * Memory controller interleaving is NOT on;
462 * set each lawbar individually.
464 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
465 fsl_ddr_set_lawbar(&info.common_timing_params[i],
470 debug("total_memory = %llu\n", (u64)total_memory);