blob: 54e40f1f50ddde3b0956fb270568904bf643b47d [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
2 * Copyright 2004 Freescale Semiconductor.
3 * (C) Copyright 2003 Motorola Inc.
4 * Xianghua Xiao (X.Xiao@motorola.com)
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
26#include <asm/processor.h>
27#include <i2c.h>
28#include <spd.h>
29#include <asm/mmu.h>
30
31
32#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
33extern void dma_init(void);
34extern uint dma_check(void);
35extern int dma_xfer(void *dest, uint count, void *src);
36#endif
37
38#ifdef CONFIG_SPD_EEPROM
39
40#ifndef CFG_READ_SPD
41#define CFG_READ_SPD i2c_read
42#endif
43
44/*
Jon Loeliger9a655872006-05-19 13:26:34 -050045 * Only one of the following three should be 1; others should be 0
46 * By default the cache line interleaving is selected if
John Traill91a414c2006-08-08 11:32:43 +010047 * the CONFIG_DDR_INTERLEAVE flag is defined
Jon Loeliger9a655872006-05-19 13:26:34 -050048 */
49#define CFG_PAGE_INTERLEAVING 0
50#define CFG_BANK_INTERLEAVING 0
51#define CFG_SUPER_BANK_INTERLEAVING 0
52
53/*
James Yangc1ab8262007-03-16 13:02:53 -050054 * Convert picoseconds into DRAM clock cycles (rounding up if needed).
Jon Loeligerdebb7352006-04-26 17:58:56 -050055 */
56
James Yangc1ab8262007-03-16 13:02:53 -050057static unsigned int
58picos_to_clk(unsigned int picos)
Jon Loeligerdebb7352006-04-26 17:58:56 -050059{
James Yangc1ab8262007-03-16 13:02:53 -050060 /* use unsigned long long to avoid rounding errors */
61 const unsigned long long ULL_2e12 = 2000000000000ULL;
62 unsigned long long clks;
63 unsigned long long clks_temp;
Jon Loeligerdebb7352006-04-26 17:58:56 -050064
James Yangc1ab8262007-03-16 13:02:53 -050065 if (! picos)
66 return 0;
67
68 clks = get_bus_freq(0) * (unsigned long long) picos;
69 clks_temp = clks;
70 clks = clks / ULL_2e12;
71 if (clks_temp % ULL_2e12) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050072 clks++;
73 }
74
James Yangc1ab8262007-03-16 13:02:53 -050075 if (clks > 0xFFFFFFFFULL) {
76 clks = 0xFFFFFFFFULL;
77 }
78
79 return (unsigned int) clks;
Jon Loeligerdebb7352006-04-26 17:58:56 -050080}
81
82
83/*
84 * Calculate the Density of each Physical Rank.
85 * Returned size is in bytes.
86 *
87 * Study these table from Byte 31 of JEDEC SPD Spec.
88 *
89 * DDR I DDR II
90 * Bit Size Size
91 * --- ----- ------
92 * 7 high 512MB 512MB
93 * 6 256MB 256MB
94 * 5 128MB 128MB
95 * 4 64MB 16GB
96 * 3 32MB 8GB
97 * 2 16MB 4GB
98 * 1 2GB 2GB
99 * 0 low 1GB 1GB
100 *
101 * Reorder Table to be linear by stripping the bottom
102 * 2 or 5 bits off and shifting them up to the top.
103 */
104
105unsigned int
106compute_banksize(unsigned int mem_type, unsigned char row_dens)
107{
108 unsigned int bsize;
109
110 if (mem_type == SPD_MEMTYPE_DDR) {
111 /* Bottom 2 bits up to the top. */
112 bsize = ((row_dens >> 2) | ((row_dens & 3) << 6)) << 24;
113 debug("DDR: DDR I rank density = 0x%08x\n", bsize);
114 } else {
115 /* Bottom 5 bits up to the top. */
116 bsize = ((row_dens >> 5) | ((row_dens & 31) << 3)) << 27;
117 debug("DDR: DDR II rank density = 0x%08x\n", bsize);
118 }
119 return bsize;
120}
121
122
123/*
124 * Convert a two-nibble BCD value into a cycle time.
125 * While the spec calls for nano-seconds, picos are returned.
126 *
127 * This implements the tables for bytes 9, 23 and 25 for both
128 * DDR I and II. No allowance for distinguishing the invalid
129 * fields absent for DDR I yet present in DDR II is made.
130 * (That is, cycle times of .25, .33, .66 and .75 ns are
131 * allowed for both DDR II and I.)
132 */
133
134unsigned int
135convert_bcd_tenths_to_cycle_time_ps(unsigned int spd_val)
136{
137 /*
138 * Table look up the lower nibble, allow DDR I & II.
139 */
140 unsigned int tenths_ps[16] = {
141 0,
142 100,
143 200,
144 300,
145 400,
146 500,
147 600,
148 700,
149 800,
150 900,
151 250,
John Traill91a414c2006-08-08 11:32:43 +0100152 330,
153 660,
Jon Loeligerdebb7352006-04-26 17:58:56 -0500154 750,
155 0, /* undefined */
156 0 /* undefined */
157 };
158
159 unsigned int whole_ns = (spd_val & 0xF0) >> 4;
160 unsigned int tenth_ns = spd_val & 0x0F;
161 unsigned int ps = whole_ns * 1000 + tenths_ps[tenth_ns];
162
163 return ps;
164}
165
166
Jon Loeliger1fd56992006-10-10 17:19:03 -0500167/*
168 * Determine Refresh Rate. Ignore self refresh bit on DDR I.
169 * Table from SPD Spec, Byte 12, converted to picoseconds and
170 * filled in with "default" normal values.
171 */
172unsigned int determine_refresh_rate(unsigned int spd_refresh)
173{
174 unsigned int refresh_time_ns[8] = {
175 15625000, /* 0 Normal 1.00x */
176 3900000, /* 1 Reduced .25x */
177 7800000, /* 2 Extended .50x */
178 31300000, /* 3 Extended 2.00x */
179 62500000, /* 4 Extended 4.00x */
180 125000000, /* 5 Extended 8.00x */
181 15625000, /* 6 Normal 1.00x filler */
182 15625000, /* 7 Normal 1.00x filler */
183 };
184
185 return picos_to_clk(refresh_time_ns[spd_refresh & 0x7]);
186}
187
188
Jon Loeligerdebb7352006-04-26 17:58:56 -0500189long int
Jon Loeliger9a655872006-05-19 13:26:34 -0500190spd_init(unsigned char i2c_address, unsigned int ddr_num,
191 unsigned int dimm_num, unsigned int start_addr)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500192{
193 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Jon Loeliger9a655872006-05-19 13:26:34 -0500194 volatile ccsr_ddr_t *ddr;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500195 volatile ccsr_gur_t *gur = &immap->im_gur;
196 spd_eeprom_t spd;
197 unsigned int n_ranks;
198 unsigned int rank_density;
Becky Bruceb830b7f2008-01-10 14:00:28 -0600199 unsigned int odt_rd_cfg, odt_wr_cfg, ba_bits;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500200 unsigned int odt_cfg, mode_odt_enable;
Jon Loeliger1fd56992006-10-10 17:19:03 -0500201 unsigned int refresh_clk;
202#ifdef MPC86xx_DDR_SDRAM_CLK_CNTL
203 unsigned char clk_adjust;
204#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500205 unsigned int dqs_cfg;
206 unsigned char twr_clk, twtr_clk, twr_auto_clk;
207 unsigned int tCKmin_ps, tCKmax_ps;
John Traill91a414c2006-08-08 11:32:43 +0100208 unsigned int max_data_rate;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500209 unsigned int busfreq;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500210 unsigned int memsize;
211 unsigned char caslat, caslat_ctrl;
212 unsigned int trfc, trfc_clk, trfc_low, trfc_high;
213 unsigned int trcd_clk;
214 unsigned int trtp_clk;
215 unsigned char cke_min_clk;
216 unsigned char add_lat;
217 unsigned char wr_lat;
218 unsigned char wr_data_delay;
219 unsigned char four_act;
220 unsigned char cpo;
221 unsigned char burst_len;
222 unsigned int mode_caslat;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500223 unsigned char d_init;
John Traill91a414c2006-08-08 11:32:43 +0100224 unsigned int tCycle_ps, modfreq;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500225
Jon Loeliger9a655872006-05-19 13:26:34 -0500226 if (ddr_num == 1)
227 ddr = &immap->im_ddr1;
228 else
229 ddr = &immap->im_ddr2;
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500230
Jon Loeligerdebb7352006-04-26 17:58:56 -0500231 /*
232 * Read SPD information.
233 */
Jon Loeliger9a655872006-05-19 13:26:34 -0500234 debug("Performing SPD read at I2C address 0x%02lx\n",i2c_address);
235 memset((void *)&spd, 0, sizeof(spd));
236 CFG_READ_SPD(i2c_address, 0, 1, (uchar *) &spd, sizeof(spd));
Jon Loeligerdebb7352006-04-26 17:58:56 -0500237
238 /*
239 * Check for supported memory module types.
240 */
241 if (spd.mem_type != SPD_MEMTYPE_DDR &&
242 spd.mem_type != SPD_MEMTYPE_DDR2) {
Jon Loeliger9a655872006-05-19 13:26:34 -0500243 debug("Warning: Unable to locate DDR I or DDR II module for DIMM %d of DDR controller %d.\n"
244 " Fundamental memory type is 0x%0x\n",
245 dimm_num,
246 ddr_num,
247 spd.mem_type);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500248 return 0;
249 }
250
Jon Loeliger9a655872006-05-19 13:26:34 -0500251 debug("\nFound memory of type 0x%02lx ", spd.mem_type);
252 if (spd.mem_type == SPD_MEMTYPE_DDR)
253 debug("DDR I\n");
254 else
255 debug("DDR II\n");
256
Jon Loeligerdebb7352006-04-26 17:58:56 -0500257 /*
258 * These test gloss over DDR I and II differences in interpretation
259 * of bytes 3 and 4, but irrelevantly. Multiple asymmetric banks
260 * are not supported on DDR I; and not encoded on DDR II.
261 *
262 * Also note that the 8548 controller can support:
263 * 12 <= nrow <= 16
264 * and
265 * 8 <= ncol <= 11 (still, for DDR)
266 * 6 <= ncol <= 9 (for FCRAM)
267 */
268 if (spd.nrow_addr < 12 || spd.nrow_addr > 14) {
269 printf("DDR: Unsupported number of Row Addr lines: %d.\n",
270 spd.nrow_addr);
271 return 0;
272 }
273 if (spd.ncol_addr < 8 || spd.ncol_addr > 11) {
274 printf("DDR: Unsupported number of Column Addr lines: %d.\n",
275 spd.ncol_addr);
276 return 0;
277 }
278
279 /*
280 * Determine the number of physical banks controlled by
281 * different Chip Select signals. This is not quite the
282 * same as the number of DIMM modules on the board. Feh.
283 */
284 if (spd.mem_type == SPD_MEMTYPE_DDR) {
285 n_ranks = spd.nrows;
286 } else {
287 n_ranks = (spd.nrows & 0x7) + 1;
288 }
289
290 debug("DDR: number of ranks = %d\n", n_ranks);
291
292 if (n_ranks > 2) {
293 printf("DDR: Only 2 chip selects are supported: %d\n",
294 n_ranks);
295 return 0;
296 }
297
298 /*
Ed Swarthout2ccceac2006-12-07 10:34:14 -0600299 * Adjust DDR II IO voltage biasing. Rev1 only
Jon Loeligerdebb7352006-04-26 17:58:56 -0500300 */
Ed Swarthout2ccceac2006-12-07 10:34:14 -0600301 if (((get_svr() & 0xf0) == 0x10) && (spd.mem_type == SPD_MEMTYPE_DDR2)) {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500302 gur->ddrioovcr = (0
303 | 0x80000000 /* Enable */
304 | 0x10000000 /* VSEL to 1.8V */
305 );
306 }
307
308 /*
309 * Determine the size of each Rank in bytes.
310 */
311 rank_density = compute_banksize(spd.mem_type, spd.row_dens);
312
Jon Loeliger9a655872006-05-19 13:26:34 -0500313 debug("Start address for this controller is 0x%08lx\n", start_addr);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500314
315 /*
316 * ODT configuration recommendation from DDR Controller Chapter.
317 */
318 odt_rd_cfg = 0; /* Never assert ODT */
319 odt_wr_cfg = 0; /* Never assert ODT */
320 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
321 odt_wr_cfg = 1; /* Assert ODT on writes to CS0 */
322 }
323
Becky Bruceb830b7f2008-01-10 14:00:28 -0600324 ba_bits = 0;
325 if (spd.nbanks == 0x8)
326 ba_bits = 1;
327
Jon Loeliger9a655872006-05-19 13:26:34 -0500328#ifdef CONFIG_DDR_INTERLEAVE
John Traill91a414c2006-08-08 11:32:43 +0100329
Jon Loeliger9a655872006-05-19 13:26:34 -0500330 if (dimm_num != 1) {
331 printf("For interleaving memory on HPCN, need to use DIMM 1 for DDR Controller %d !\n", ddr_num);
332 return 0;
333 } else {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500334 /*
Jon Loeliger9a655872006-05-19 13:26:34 -0500335 * Since interleaved memory only uses CS0, the
336 * memory sticks have to be identical in size and quantity
337 * of ranks. That essentially gives double the size on
338 * one rank, i.e on CS0 for both controllers put together.
339 * Confirm this???
Jon Loeligerdebb7352006-04-26 17:58:56 -0500340 */
Jon Loeliger9a655872006-05-19 13:26:34 -0500341 rank_density *= 2;
342
343 /*
344 * Eg: Bounds: 0x0000_0000 to 0x0f000_0000 first 256 Meg
345 */
346 start_addr = 0;
347 ddr->cs0_bnds = (start_addr >> 8)
348 | (((start_addr + rank_density - 1) >> 24));
349 /*
350 * Default interleaving mode to cache-line interleaving.
351 */
352 ddr->cs0_config = ( 1 << 31
353#if (CFG_PAGE_INTERLEAVING == 1)
354 | (PAGE_INTERLEAVING)
355#elif (CFG_BANK_INTERLEAVING == 1)
356 | (BANK_INTERLEAVING)
357#elif (CFG_SUPER_BANK_INTERLEAVING == 1)
358 | (SUPER_BANK_INTERLEAVING)
359#else
360 | (CACHE_LINE_INTERLEAVING)
361#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -0500362 | (odt_rd_cfg << 20)
363 | (odt_wr_cfg << 16)
Becky Bruceb830b7f2008-01-10 14:00:28 -0600364 | (ba_bits << 14)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500365 | (spd.nrow_addr - 12) << 8
366 | (spd.ncol_addr - 8) );
Jon Loeligerdebb7352006-04-26 17:58:56 -0500367
Jon Loeliger9a655872006-05-19 13:26:34 -0500368 debug("DDR: cs0_bnds = 0x%08x\n", ddr->cs0_bnds);
369 debug("DDR: cs0_config = 0x%08x\n", ddr->cs0_config);
370
371 /*
372 * Adjustment for dual rank memory to get correct memory
373 * size (return value of this function).
374 */
375 if (n_ranks == 2) {
376 n_ranks = 1;
377 rank_density /= 2;
378 } else {
379 rank_density /= 2;
380 }
381 }
Jon Loeliger9a655872006-05-19 13:26:34 -0500382#else /* CONFIG_DDR_INTERLEAVE */
383
384 if (dimm_num == 1) {
385 /*
386 * Eg: Bounds: 0x0000_0000 to 0x0f000_0000 first 256 Meg
387 */
388 ddr->cs0_bnds = (start_addr >> 8)
389 | (((start_addr + rank_density - 1) >> 24));
390
391 ddr->cs0_config = ( 1 << 31
392 | (odt_rd_cfg << 20)
393 | (odt_wr_cfg << 16)
Becky Bruceb830b7f2008-01-10 14:00:28 -0600394 | (ba_bits << 14)
Jon Loeliger9a655872006-05-19 13:26:34 -0500395 | (spd.nrow_addr - 12) << 8
396 | (spd.ncol_addr - 8) );
397
398 debug("DDR: cs0_bnds = 0x%08x\n", ddr->cs0_bnds);
399 debug("DDR: cs0_config = 0x%08x\n", ddr->cs0_config);
400
401 if (n_ranks == 2) {
402 /*
403 * Eg: Bounds: 0x1000_0000 to 0x1f00_0000,
404 * second 256 Meg
405 */
406 ddr->cs1_bnds = (((start_addr + rank_density) >> 8)
407 | (( start_addr + 2*rank_density - 1)
408 >> 24));
409 ddr->cs1_config = ( 1<<31
410 | (odt_rd_cfg << 20)
411 | (odt_wr_cfg << 16)
Becky Bruceb830b7f2008-01-10 14:00:28 -0600412 | (ba_bits << 14)
Jon Loeliger9a655872006-05-19 13:26:34 -0500413 | (spd.nrow_addr - 12) << 8
414 | (spd.ncol_addr - 8) );
415 debug("DDR: cs1_bnds = 0x%08x\n", ddr->cs1_bnds);
416 debug("DDR: cs1_config = 0x%08x\n", ddr->cs1_config);
417 }
418
419 } else {
420 /*
421 * This is the 2nd DIMM slot for this controller
422 */
423 /*
424 * Eg: Bounds: 0x0000_0000 to 0x0f000_0000 first 256 Meg
425 */
426 ddr->cs2_bnds = (start_addr >> 8)
427 | (((start_addr + rank_density - 1) >> 24));
428
429 ddr->cs2_config = ( 1 << 31
430 | (odt_rd_cfg << 20)
431 | (odt_wr_cfg << 16)
Becky Bruceb830b7f2008-01-10 14:00:28 -0600432 | (ba_bits << 14)
Jon Loeliger9a655872006-05-19 13:26:34 -0500433 | (spd.nrow_addr - 12) << 8
434 | (spd.ncol_addr - 8) );
435
436 debug("DDR: cs2_bnds = 0x%08x\n", ddr->cs2_bnds);
437 debug("DDR: cs2_config = 0x%08x\n", ddr->cs2_config);
438
439 if (n_ranks == 2) {
440 /*
441 * Eg: Bounds: 0x1000_0000 to 0x1f00_0000,
442 * second 256 Meg
443 */
444 ddr->cs3_bnds = (((start_addr + rank_density) >> 8)
445 | (( start_addr + 2*rank_density - 1)
446 >> 24));
447 ddr->cs3_config = ( 1<<31
448 | (odt_rd_cfg << 20)
449 | (odt_wr_cfg << 16)
Becky Bruceb830b7f2008-01-10 14:00:28 -0600450 | (ba_bits << 14)
Jon Loeliger9a655872006-05-19 13:26:34 -0500451 | (spd.nrow_addr - 12) << 8
452 | (spd.ncol_addr - 8) );
453 debug("DDR: cs3_bnds = 0x%08x\n", ddr->cs3_bnds);
454 debug("DDR: cs3_config = 0x%08x\n", ddr->cs3_config);
455 }
456 }
457#endif /* CONFIG_DDR_INTERLEAVE */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500458
459 /*
460 * Find the largest CAS by locating the highest 1 bit
461 * in the spd.cas_lat field. Translate it to a DDR
462 * controller field value:
463 *
464 * CAS Lat DDR I DDR II Ctrl
465 * Clocks SPD Bit SPD Bit Value
466 * ------- ------- ------- -----
467 * 1.0 0 0001
468 * 1.5 1 0010
469 * 2.0 2 2 0011
470 * 2.5 3 0100
471 * 3.0 4 3 0101
472 * 3.5 5 0110
473 * 4.0 4 0111
474 * 4.5 1000
475 * 5.0 5 1001
476 */
477 caslat = __ilog2(spd.cas_lat);
478 if ((spd.mem_type == SPD_MEMTYPE_DDR)
479 && (caslat > 5)) {
480 printf("DDR I: Invalid SPD CAS Latency: 0x%x.\n", spd.cas_lat);
481 return 0;
482
483 } else if (spd.mem_type == SPD_MEMTYPE_DDR2
484 && (caslat < 2 || caslat > 5)) {
485 printf("DDR II: Invalid SPD CAS Latency: 0x%x.\n",
486 spd.cas_lat);
487 return 0;
488 }
489 debug("DDR: caslat SPD bit is %d\n", caslat);
490
491 /*
492 * Calculate the Maximum Data Rate based on the Minimum Cycle time.
493 * The SPD clk_cycle field (tCKmin) is measured in tenths of
494 * nanoseconds and represented as BCD.
495 */
496 tCKmin_ps = convert_bcd_tenths_to_cycle_time_ps(spd.clk_cycle);
497 debug("DDR: tCKmin = %d ps\n", tCKmin_ps);
498
499 /*
500 * Double-data rate, scaled 1000 to picoseconds, and back down to MHz.
501 */
502 max_data_rate = 2 * 1000 * 1000 / tCKmin_ps;
503 debug("DDR: Module max data rate = %d Mhz\n", max_data_rate);
504
505
506 /*
507 * Adjust the CAS Latency to allow for bus speeds that
508 * are slower than the DDR module.
509 */
510 busfreq = get_bus_freq(0) / 1000000; /* MHz */
John Traillf55df182006-09-29 08:23:12 +0100511 tCycle_ps = convert_bcd_tenths_to_cycle_time_ps(spd.clk_cycle3);
512 modfreq = 2 * 1000 * 1000 / tCycle_ps;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500513
John Traill91a414c2006-08-08 11:32:43 +0100514 if ((spd.mem_type == SPD_MEMTYPE_DDR2) && (busfreq < 266)) {
515 printf("DDR: platform frequency too low for correct DDR2 controller operation\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500516 return 0;
John Traill91a414c2006-08-08 11:32:43 +0100517 } else if (busfreq < 90) {
518 printf("DDR: platform frequency too low for correct DDR1 operation\n");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500519 return 0;
520 }
521
John Traill91a414c2006-08-08 11:32:43 +0100522 if ((busfreq <= modfreq) && (spd.cas_lat & (1 << (caslat - 2)))) {
523 caslat -= 2;
524 } else {
525 tCycle_ps = convert_bcd_tenths_to_cycle_time_ps(spd.clk_cycle2);
526 modfreq = 2 * 1000 * 1000 / tCycle_ps;
527 if ((busfreq <= modfreq) && (spd.cas_lat & (1 << (caslat - 1))))
528 caslat -= 1;
529 else if (busfreq > max_data_rate) {
530 printf("DDR: Bus freq %d MHz is not fit for DDR rate %d MHz\n",
531 busfreq, max_data_rate);
532 return 0;
533 }
534 }
535
536 /*
537 * Empirically set ~MCAS-to-preamble override for DDR 2.
538 * Your milage will vary.
539 */
540 cpo = 0;
541 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
542 if (busfreq <= 333) {
543 cpo = 0x7;
544 } else if (busfreq <= 400) {
545 cpo = 0x9;
546 } else {
547 cpo = 0xa;
548 }
549 }
Jon Loeligerdebb7352006-04-26 17:58:56 -0500550
551 /*
552 * Convert caslat clocks to DDR controller value.
553 * Force caslat_ctrl to be DDR Controller field-sized.
554 */
555 if (spd.mem_type == SPD_MEMTYPE_DDR) {
556 caslat_ctrl = (caslat + 1) & 0x07;
557 } else {
558 caslat_ctrl = (2 * caslat - 1) & 0x0f;
559 }
560
Jon Loeligerdebb7352006-04-26 17:58:56 -0500561 debug("DDR: caslat SPD bit is %d, controller field is 0x%x\n",
562 caslat, caslat_ctrl);
563
564 /*
565 * Timing Config 0.
566 * Avoid writing for DDR I. The new PQ38 DDR controller
567 * dreams up non-zero default values to be backwards compatible.
568 */
569 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
570 unsigned char taxpd_clk = 8; /* By the book. */
571 unsigned char tmrd_clk = 2; /* By the book. */
572 unsigned char act_pd_exit = 2; /* Empirical? */
573 unsigned char pre_pd_exit = 6; /* Empirical? */
574
Jon Loeliger9a655872006-05-19 13:26:34 -0500575 ddr->timing_cfg_0 = (0
Jon Loeligerdebb7352006-04-26 17:58:56 -0500576 | ((act_pd_exit & 0x7) << 20) /* ACT_PD_EXIT */
577 | ((pre_pd_exit & 0x7) << 16) /* PRE_PD_EXIT */
578 | ((taxpd_clk & 0xf) << 8) /* ODT_PD_EXIT */
579 | ((tmrd_clk & 0xf) << 0) /* MRS_CYC */
580 );
Jon Loeliger9a655872006-05-19 13:26:34 -0500581 debug("DDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500582
Jon Loeligerdebb7352006-04-26 17:58:56 -0500583 }
584
585
586 /*
587 * Some Timing Config 1 values now.
588 * Sneak Extended Refresh Recovery in here too.
589 */
590
591 /*
592 * For DDR I, WRREC(Twr) and WRTORD(Twtr) are not in SPD,
593 * use conservative value.
594 * For DDR II, they are bytes 36 and 37, in quarter nanos.
595 */
596
597 if (spd.mem_type == SPD_MEMTYPE_DDR) {
598 twr_clk = 3; /* Clocks */
599 twtr_clk = 1; /* Clocks */
600 } else {
601 twr_clk = picos_to_clk(spd.twr * 250);
602 twtr_clk = picos_to_clk(spd.twtr * 250);
603 }
604
605 /*
606 * Calculate Trfc, in picos.
607 * DDR I: Byte 42 straight up in ns.
608 * DDR II: Byte 40 and 42 swizzled some, in ns.
609 */
610 if (spd.mem_type == SPD_MEMTYPE_DDR) {
611 trfc = spd.trfc * 1000; /* up to ps */
612 } else {
613 unsigned int byte40_table_ps[8] = {
614 0,
615 250,
616 330,
617 500,
618 660,
619 750,
620 0,
621 0
622 };
623
624 trfc = (((spd.trctrfc_ext & 0x1) * 256) + spd.trfc) * 1000
625 + byte40_table_ps[(spd.trctrfc_ext >> 1) & 0x7];
626 }
627 trfc_clk = picos_to_clk(trfc);
628
629 /*
630 * Trcd, Byte 29, from quarter nanos to ps and clocks.
631 */
632 trcd_clk = picos_to_clk(spd.trcd * 250) & 0x7;
633
634 /*
635 * Convert trfc_clk to DDR controller fields. DDR I should
636 * fit in the REFREC field (16-19) of TIMING_CFG_1, but the
637 * 8548 controller has an extended REFREC field of three bits.
638 * The controller automatically adds 8 clocks to this value,
639 * so preadjust it down 8 first before splitting it up.
640 */
641 trfc_low = (trfc_clk - 8) & 0xf;
642 trfc_high = ((trfc_clk - 8) >> 4) & 0x3;
643
644 /*
645 * Sneak in some Extended Refresh Recovery.
646 */
Jon Loeliger9a655872006-05-19 13:26:34 -0500647 ddr->ext_refrec = (trfc_high << 16);
648 debug("DDR: ext_refrec = 0x%08x\n", ddr->ext_refrec);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500649
Jon Loeliger9a655872006-05-19 13:26:34 -0500650 ddr->timing_cfg_1 =
Jon Loeligerdebb7352006-04-26 17:58:56 -0500651 (0
652 | ((picos_to_clk(spd.trp * 250) & 0x07) << 28) /* PRETOACT */
653 | ((picos_to_clk(spd.tras * 1000) & 0x0f ) << 24) /* ACTTOPRE */
654 | (trcd_clk << 20) /* ACTTORW */
655 | (caslat_ctrl << 16) /* CASLAT */
656 | (trfc_low << 12) /* REFEC */
657 | ((twr_clk & 0x07) << 8) /* WRRREC */
658 | ((picos_to_clk(spd.trrd * 250) & 0x07) << 4) /* ACTTOACT */
659 | ((twtr_clk & 0x07) << 0) /* WRTORD */
660 );
661
Jon Loeliger9a655872006-05-19 13:26:34 -0500662 debug("DDR: timing_cfg_1 = 0x%08x\n", ddr->timing_cfg_1);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500663
664
665 /*
666 * Timing_Config_2
667 * Was: 0x00000800;
668 */
669
670 /*
671 * Additive Latency
672 * For DDR I, 0.
673 * For DDR II, with ODT enabled, use "a value" less than ACTTORW,
674 * which comes from Trcd, and also note that:
675 * add_lat + caslat must be >= 4
676 */
677 add_lat = 0;
678 if (spd.mem_type == SPD_MEMTYPE_DDR2
679 && (odt_wr_cfg || odt_rd_cfg)
680 && (caslat < 4)) {
681 add_lat = 4 - caslat;
John Traill91a414c2006-08-08 11:32:43 +0100682 if (add_lat >= trcd_clk) {
Jon Loeligerdebb7352006-04-26 17:58:56 -0500683 add_lat = trcd_clk - 1;
684 }
685 }
686
687 /*
688 * Write Data Delay
689 * Historically 0x2 == 4/8 clock delay.
690 * Empirically, 0x3 == 6/8 clock delay is suggested for DDR I 266.
691 */
692 wr_data_delay = 3;
693
694 /*
695 * Write Latency
696 * Read to Precharge
697 * Minimum CKE Pulse Width.
698 * Four Activate Window
699 */
700 if (spd.mem_type == SPD_MEMTYPE_DDR) {
701 /*
702 * This is a lie. It should really be 1, but if it is
703 * set to 1, bits overlap into the old controller's
704 * otherwise unused ACSM field. If we leave it 0, then
705 * the HW will magically treat it as 1 for DDR 1. Oh Yea.
706 */
707 wr_lat = 0;
708
709 trtp_clk = 2; /* By the book. */
710 cke_min_clk = 1; /* By the book. */
711 four_act = 1; /* By the book. */
712
713 } else {
714 wr_lat = caslat - 1;
715
716 /* Convert SPD value from quarter nanos to picos. */
717 trtp_clk = picos_to_clk(spd.trtp * 250);
718
719 cke_min_clk = 3; /* By the book. */
720 four_act = picos_to_clk(37500); /* By the book. 1k pages? */
721 }
722
Jon Loeliger9a655872006-05-19 13:26:34 -0500723 ddr->timing_cfg_2 = (0
Jon Loeligerdebb7352006-04-26 17:58:56 -0500724 | ((add_lat & 0x7) << 28) /* ADD_LAT */
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500725 | ((cpo & 0x1f) << 23) /* CPO */
Jon Loeligerdebb7352006-04-26 17:58:56 -0500726 | ((wr_lat & 0x7) << 19) /* WR_LAT */
727 | ((trtp_clk & 0x7) << 13) /* RD_TO_PRE */
728 | ((wr_data_delay & 0x7) << 10) /* WR_DATA_DELAY */
729 | ((cke_min_clk & 0x7) << 6) /* CKE_PLS */
730 | ((four_act & 0x1f) << 0) /* FOUR_ACT */
731 );
732
Jon Loeliger9a655872006-05-19 13:26:34 -0500733 debug("DDR: timing_cfg_2 = 0x%08x\n", ddr->timing_cfg_2);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500734
735
736 /*
737 * Determine the Mode Register Set.
738 *
739 * This is nominally part specific, but it appears to be
740 * consistent for all DDR I devices, and for all DDR II devices.
741 *
742 * caslat must be programmed
743 * burst length is always 4
744 * burst type is sequential
745 *
746 * For DDR I:
747 * operating mode is "normal"
748 *
749 * For DDR II:
750 * other stuff
751 */
752
753 mode_caslat = 0;
754
755 /*
756 * Table lookup from DDR I or II Device Operation Specs.
757 */
758 if (spd.mem_type == SPD_MEMTYPE_DDR) {
759 if (1 <= caslat && caslat <= 4) {
760 unsigned char mode_caslat_table[4] = {
761 0x5, /* 1.5 clocks */
762 0x2, /* 2.0 clocks */
763 0x6, /* 2.5 clocks */
764 0x3 /* 3.0 clocks */
765 };
766 mode_caslat = mode_caslat_table[caslat - 1];
767 } else {
768 puts("DDR I: Only CAS Latencies of 1.5, 2.0, "
769 "2.5 and 3.0 clocks are supported.\n");
770 return 0;
771 }
772
773 } else {
774 if (2 <= caslat && caslat <= 5) {
775 mode_caslat = caslat;
776 } else {
777 puts("DDR II: Only CAS Latencies of 2.0, 3.0, "
778 "4.0 and 5.0 clocks are supported.\n");
779 return 0;
780 }
781 }
782
783 /*
Jon Loeliger9a655872006-05-19 13:26:34 -0500784 * Encoded Burst Length of 4.
Jon Loeligerdebb7352006-04-26 17:58:56 -0500785 */
786 burst_len = 2; /* Fiat. */
787
788 if (spd.mem_type == SPD_MEMTYPE_DDR) {
789 twr_auto_clk = 0; /* Historical */
790 } else {
791 /*
792 * Determine tCK max in picos. Grab tWR and convert to picos.
793 * Auto-precharge write recovery is:
794 * WR = roundup(tWR_ns/tCKmax_ns).
795 *
796 * Ponder: Is twr_auto_clk different than twr_clk?
797 */
798 tCKmax_ps = convert_bcd_tenths_to_cycle_time_ps(spd.tckmax);
799 twr_auto_clk = (spd.twr * 250 + tCKmax_ps - 1) / tCKmax_ps;
800 }
801
Jon Loeligerdebb7352006-04-26 17:58:56 -0500802 /*
803 * Mode Reg in bits 16 ~ 31,
804 * Extended Mode Reg 1 in bits 0 ~ 15.
805 */
806 mode_odt_enable = 0x0; /* Default disabled */
807 if (odt_wr_cfg || odt_rd_cfg) {
808 /*
809 * Bits 6 and 2 in Extended MRS(1)
810 * Bit 2 == 0x04 == 75 Ohm, with 2 DIMM modules.
811 * Bit 6 == 0x40 == 150 Ohm, with 1 DIMM module.
812 */
813 mode_odt_enable = 0x40; /* 150 Ohm */
814 }
815
Jon Loeliger9a655872006-05-19 13:26:34 -0500816 ddr->sdram_mode_1 =
Jon Loeligerdebb7352006-04-26 17:58:56 -0500817 (0
818 | (add_lat << (16 + 3)) /* Additive Latency in EMRS1 */
819 | (mode_odt_enable << 16) /* ODT Enable in EMRS1 */
820 | (twr_auto_clk << 9) /* Write Recovery Autopre */
821 | (mode_caslat << 4) /* caslat */
822 | (burst_len << 0) /* Burst length */
823 );
824
Jon Loeliger9a655872006-05-19 13:26:34 -0500825 debug("DDR: sdram_mode = 0x%08x\n", ddr->sdram_mode_1);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500826
Jon Loeligerdebb7352006-04-26 17:58:56 -0500827 /*
828 * Clear EMRS2 and EMRS3.
829 */
Jon Loeliger9a655872006-05-19 13:26:34 -0500830 ddr->sdram_mode_2 = 0;
831 debug("DDR: sdram_mode_2 = 0x%08x\n", ddr->sdram_mode_2);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500832
Jon Loeliger1fd56992006-10-10 17:19:03 -0500833 /*
834 * Determine Refresh Rate.
835 */
836 refresh_clk = determine_refresh_rate(spd.refresh & 0x7);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500837
838 /*
Jon Loeliger1fd56992006-10-10 17:19:03 -0500839 * Set BSTOPRE to 0x100 for page mode
840 * If auto-charge is used, set BSTOPRE = 0
Jon Loeligerdebb7352006-04-26 17:58:56 -0500841 */
Jon Loeliger1fd56992006-10-10 17:19:03 -0500842 ddr->sdram_interval =
843 (0
844 | (refresh_clk & 0x3fff) << 16
845 | 0x100
846 );
847 debug("DDR: sdram_interval = 0x%08x\n", ddr->sdram_interval);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500848
Jon Loeligerdebb7352006-04-26 17:58:56 -0500849
850 /*
851 * Is this an ECC DDR chip?
852 * But don't mess with it if the DDR controller will init mem.
853 */
854#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
855 if (spd.config == 0x02) {
Jon Loeliger9a655872006-05-19 13:26:34 -0500856 ddr->err_disable = 0x0000000d;
857 ddr->err_sbe = 0x00ff0000;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500858 }
Jon Loeliger9a655872006-05-19 13:26:34 -0500859 debug("DDR: err_disable = 0x%08x\n", ddr->err_disable);
860 debug("DDR: err_sbe = 0x%08x\n", ddr->err_sbe);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500861#endif
862
Jon Loeligercd6d73d2006-08-29 09:48:49 -0500863 asm volatile("sync;isync");
Jon Loeligerdebb7352006-04-26 17:58:56 -0500864 udelay(500);
865
866 /*
867 * SDRAM Cfg 2
868 */
869
870 /*
871 * When ODT is enabled, Chap 9 suggests asserting ODT to
872 * internal IOs only during reads.
873 */
874 odt_cfg = 0;
875 if (odt_rd_cfg | odt_wr_cfg) {
876 odt_cfg = 0x2; /* ODT to IOs during reads */
877 }
878
879 /*
880 * Try to use differential DQS with DDR II.
881 */
882 if (spd.mem_type == SPD_MEMTYPE_DDR) {
883 dqs_cfg = 0; /* No Differential DQS for DDR I */
884 } else {
885 dqs_cfg = 0x1; /* Differential DQS for DDR II */
886 }
887
888#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
889 /*
890 * Use the DDR controller to auto initialize memory.
891 */
892 d_init = 1;
Jon Loeliger9a655872006-05-19 13:26:34 -0500893 ddr->sdram_data_init = CONFIG_MEM_INIT_VALUE;
894 debug("DDR: ddr_data_init = 0x%08x\n", ddr->sdram_data_init);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500895#else
896 /*
897 * Memory will be initialized via DMA, or not at all.
898 */
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500899 d_init = 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500900#endif
901
Jon Loeliger9a655872006-05-19 13:26:34 -0500902 ddr->sdram_cfg_2 = (0
Jon Loeligerdebb7352006-04-26 17:58:56 -0500903 | (dqs_cfg << 26) /* Differential DQS */
904 | (odt_cfg << 21) /* ODT */
905 | (d_init << 4) /* D_INIT auto init DDR */
906 );
907
Jon Loeliger9a655872006-05-19 13:26:34 -0500908 debug("DDR: sdram_cfg_2 = 0x%08x\n", ddr->sdram_cfg_2);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500909
910
911#ifdef MPC86xx_DDR_SDRAM_CLK_CNTL
Jon Loeliger1fd56992006-10-10 17:19:03 -0500912 /*
913 * Setup the clock control.
914 * SDRAM_CLK_CNTL[0] = Source synchronous enable == 1
915 * SDRAM_CLK_CNTL[5-7] = Clock Adjust
916 * 0110 3/4 cycle late
917 * 0111 7/8 cycle late
918 */
919 if (spd.mem_type == SPD_MEMTYPE_DDR)
920 clk_adjust = 0x6;
921 else
922 clk_adjust = 0x7;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500923
Jon Loeliger1fd56992006-10-10 17:19:03 -0500924 ddr->sdram_clk_cntl = (0
Jon Loeligerdebb7352006-04-26 17:58:56 -0500925 | 0x80000000
926 | (clk_adjust << 23)
927 );
Jon Loeliger1fd56992006-10-10 17:19:03 -0500928 debug("DDR: sdram_clk_cntl = 0x%08x\n", ddr->sdram_clk_cntl);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500929#endif
930
Jon Loeligerdebb7352006-04-26 17:58:56 -0500931 /*
932 * Figure out memory size in Megabytes.
933 */
Jon Loeliger9a655872006-05-19 13:26:34 -0500934 debug("# ranks = %d, rank_density = 0x%08lx\n", n_ranks, rank_density);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500935 memsize = n_ranks * rank_density / 0x100000;
Jon Loeliger9a655872006-05-19 13:26:34 -0500936 return memsize;
937}
Jon Loeligerdebb7352006-04-26 17:58:56 -0500938
939
Jon Loeliger9a655872006-05-19 13:26:34 -0500940unsigned int enable_ddr(unsigned int ddr_num)
941{
942 volatile immap_t *immap = (immap_t *)CFG_IMMR;
943 spd_eeprom_t spd1,spd2;
944 volatile ccsr_ddr_t *ddr;
945 unsigned sdram_cfg_1;
946 unsigned char sdram_type, mem_type, config, mod_attr;
947 unsigned char d_init;
948 unsigned int no_dimm1=0, no_dimm2=0;
949
950 /* Set up pointer to enable the current ddr controller */
951 if (ddr_num == 1)
952 ddr = &immap->im_ddr1;
953 else
954 ddr = &immap->im_ddr2;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500955
956 /*
Jon Loeliger9a655872006-05-19 13:26:34 -0500957 * Read both dimm slots and decide whether
958 * or not to enable this controller.
Jon Loeligerdebb7352006-04-26 17:58:56 -0500959 */
Jon Loeliger24911672007-08-27 12:41:03 -0500960 memset((void *)&spd1, 0, sizeof(spd1));
961 memset((void *)&spd2, 0, sizeof(spd2));
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500962
Jon Loeliger9a655872006-05-19 13:26:34 -0500963 if (ddr_num == 1) {
964 CFG_READ_SPD(SPD_EEPROM_ADDRESS1,
965 0, 1, (uchar *) &spd1, sizeof(spd1));
Jon Loeliger24911672007-08-27 12:41:03 -0500966#if defined(SPD_EEPROM_ADDRESS2)
Jon Loeliger9a655872006-05-19 13:26:34 -0500967 CFG_READ_SPD(SPD_EEPROM_ADDRESS2,
968 0, 1, (uchar *) &spd2, sizeof(spd2));
Jon Loeliger24911672007-08-27 12:41:03 -0500969#endif
Jon Loeliger9a655872006-05-19 13:26:34 -0500970 } else {
Jon Loeliger24911672007-08-27 12:41:03 -0500971#if defined(SPD_EEPROM_ADDRESS3)
Jon Loeliger9a655872006-05-19 13:26:34 -0500972 CFG_READ_SPD(SPD_EEPROM_ADDRESS3,
973 0, 1, (uchar *) &spd1, sizeof(spd1));
Jon Loeliger24911672007-08-27 12:41:03 -0500974#endif
975#if defined(SPD_EEPROM_ADDRESS4)
Jon Loeliger9a655872006-05-19 13:26:34 -0500976 CFG_READ_SPD(SPD_EEPROM_ADDRESS4,
977 0, 1, (uchar *) &spd2, sizeof(spd2));
Jon Loeliger24911672007-08-27 12:41:03 -0500978#endif
Jon Loeliger9a655872006-05-19 13:26:34 -0500979 }
980
981 /*
982 * Check for supported memory module types.
983 */
984 if (spd1.mem_type != SPD_MEMTYPE_DDR
985 && spd1.mem_type != SPD_MEMTYPE_DDR2) {
986 no_dimm1 = 1;
987 } else {
988 debug("\nFound memory of type 0x%02lx ",spd1.mem_type );
989 if (spd1.mem_type == SPD_MEMTYPE_DDR)
990 debug("DDR I\n");
991 else
992 debug("DDR II\n");
993 }
994
995 if (spd2.mem_type != SPD_MEMTYPE_DDR &&
996 spd2.mem_type != SPD_MEMTYPE_DDR2) {
997 no_dimm2 = 1;
998 } else {
999 debug("\nFound memory of type 0x%02lx ",spd2.mem_type );
1000 if (spd2.mem_type == SPD_MEMTYPE_DDR)
1001 debug("DDR I\n");
1002 else
1003 debug("DDR II\n");
1004 }
1005
1006#ifdef CONFIG_DDR_INTERLEAVE
1007 if (no_dimm1) {
1008 printf("For interleaved operation memory modules need to be present in CS0 DIMM slots of both DDR controllers!\n");
1009 return 0;
1010 }
1011#endif
1012
1013 /*
1014 * Memory is not present in DIMM1 and DIMM2 - so do not enable DDRn
1015 */
1016 if (no_dimm1 && no_dimm2) {
1017 printf("No memory modules found for DDR controller %d!!\n", ddr_num);
1018 return 0;
1019 } else {
1020 mem_type = no_dimm2 ? spd1.mem_type : spd2.mem_type;
1021
1022 /*
1023 * Figure out the settings for the sdram_cfg register.
1024 * Build up the entire register in 'sdram_cfg' before
1025 * writing since the write into the register will
1026 * actually enable the memory controller; all settings
1027 * must be done before enabling.
1028 *
1029 * sdram_cfg[0] = 1 (ddr sdram logic enable)
1030 * sdram_cfg[1] = 1 (self-refresh-enable)
1031 * sdram_cfg[5:7] = (SDRAM type = DDR SDRAM)
1032 * 010 DDR 1 SDRAM
1033 * 011 DDR 2 SDRAM
1034 */
1035 sdram_type = (mem_type == SPD_MEMTYPE_DDR) ? 2 : 3;
1036 sdram_cfg_1 = (0
1037 | (1 << 31) /* Enable */
1038 | (1 << 30) /* Self refresh */
1039 | (sdram_type << 24) /* SDRAM type */
1040 );
1041
1042 /*
1043 * sdram_cfg[3] = RD_EN - registered DIMM enable
1044 * A value of 0x26 indicates micron registered
1045 * DIMMS (micron.com)
1046 */
1047 mod_attr = no_dimm2 ? spd1.mod_attr : spd2.mod_attr;
1048 if (mem_type == SPD_MEMTYPE_DDR && mod_attr == 0x26) {
1049 sdram_cfg_1 |= 0x10000000; /* RD_EN */
1050 }
1051
1052#if defined(CONFIG_DDR_ECC)
1053
1054 config = no_dimm2 ? spd1.config : spd2.config;
1055
1056 /*
1057 * If the user wanted ECC (enabled via sdram_cfg[2])
1058 */
1059 if (config == 0x02) {
Haiying Wang70205e52006-05-30 08:51:19 -05001060 ddr->err_disable = 0x00000000;
Jon Loeligercd6d73d2006-08-29 09:48:49 -05001061 asm volatile("sync;isync;");
Haiying Wang70205e52006-05-30 08:51:19 -05001062 ddr->err_sbe = 0x00ff0000;
1063 ddr->err_int_en = 0x0000000d;
Jon Loeliger9a655872006-05-19 13:26:34 -05001064 sdram_cfg_1 |= 0x20000000; /* ECC_EN */
1065 }
1066#endif
1067
1068 /*
Haiying Wang70205e52006-05-30 08:51:19 -05001069 * Set 1T or 2T timing based on 1 or 2 modules
Jon Loeliger9a655872006-05-19 13:26:34 -05001070 */
1071 {
Haiying Wang70205e52006-05-30 08:51:19 -05001072 if (!(no_dimm1 || no_dimm2)) {
Jon Loeliger9a655872006-05-19 13:26:34 -05001073 /*
Haiying Wang70205e52006-05-30 08:51:19 -05001074 * 2T timing,because both DIMMS are present.
Jon Loeliger9a655872006-05-19 13:26:34 -05001075 * Enable 2T timing by setting sdram_cfg[16].
1076 */
1077 sdram_cfg_1 |= 0x8000; /* 2T_EN */
Jon Loeliger9a655872006-05-19 13:26:34 -05001078 }
1079 }
1080
1081 /*
1082 * 200 painful micro-seconds must elapse between
1083 * the DDR clock setup and the DDR config enable.
1084 */
1085 udelay(200);
1086
1087 /*
1088 * Go!
1089 */
1090 ddr->sdram_cfg_1 = sdram_cfg_1;
1091
1092 asm volatile("sync;isync");
1093 udelay(500);
1094
1095 debug("DDR: sdram_cfg = 0x%08x\n", ddr->sdram_cfg_1);
1096
1097
1098#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
1099 d_init = 1;
1100 debug("DDR: memory initializing\n");
1101
1102 /*
1103 * Poll until memory is initialized.
1104 * 512 Meg at 400 might hit this 200 times or so.
1105 */
1106 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
1107 udelay(1000);
1108 }
1109 debug("DDR: memory initialized\n\n");
1110#endif
1111
1112 debug("Enabled DDR Controller %d\n", ddr_num);
1113 return 1;
1114 }
Jon Loeligerdebb7352006-04-26 17:58:56 -05001115}
1116
Jon Loeliger9a655872006-05-19 13:26:34 -05001117
1118long int
1119spd_sdram(void)
1120{
1121 int memsize_ddr1_dimm1 = 0;
1122 int memsize_ddr1_dimm2 = 0;
Jon Loeliger24911672007-08-27 12:41:03 -05001123 int memsize_ddr1 = 0;
1124 unsigned int law_size_ddr1;
1125 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Jon Loeliger24911672007-08-27 12:41:03 -05001126 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
Wolfgang Denk409ecdc2007-11-18 16:36:27 +01001127#ifdef CONFIG_DDR_INTERLEAVE
1128 volatile ccsr_ddr_t *ddr1 = &immap->im_ddr1;
1129#endif
Jon Loeliger24911672007-08-27 12:41:03 -05001130
1131#if (CONFIG_NUM_DDR_CONTROLLERS > 1)
Jon Loeliger9a655872006-05-19 13:26:34 -05001132 int memsize_ddr2_dimm1 = 0;
1133 int memsize_ddr2_dimm2 = 0;
Jon Loeliger9a655872006-05-19 13:26:34 -05001134 int memsize_ddr2 = 0;
Jon Loeliger24911672007-08-27 12:41:03 -05001135 unsigned int law_size_ddr2;
1136#endif
1137
Jon Loeliger9a655872006-05-19 13:26:34 -05001138 unsigned int ddr1_enabled = 0;
1139 unsigned int ddr2_enabled = 0;
Jon Loeliger24911672007-08-27 12:41:03 -05001140 int memsize_total = 0;
Jon Loeliger9a655872006-05-19 13:26:34 -05001141
1142#ifdef CONFIG_DDR_INTERLEAVE
1143 unsigned int law_size_interleaved;
Jon Loeligerea08ff62006-10-27 07:47:22 -05001144 volatile ccsr_ddr_t *ddr2 = &immap->im_ddr2;
Jon Loeliger9a655872006-05-19 13:26:34 -05001145
1146 memsize_ddr1_dimm1 = spd_init(SPD_EEPROM_ADDRESS1,
1147 1, 1,
1148 (unsigned int)memsize_total * 1024*1024);
1149 memsize_total += memsize_ddr1_dimm1;
1150
1151 memsize_ddr2_dimm1 = spd_init(SPD_EEPROM_ADDRESS3,
1152 2, 1,
1153 (unsigned int)memsize_total * 1024*1024);
1154 memsize_total += memsize_ddr2_dimm1;
1155
1156 if (memsize_ddr1_dimm1 != memsize_ddr2_dimm1) {
1157 if (memsize_ddr1_dimm1 < memsize_ddr2_dimm1)
1158 memsize_total -= memsize_ddr1_dimm1;
1159 else
1160 memsize_total -= memsize_ddr2_dimm1;
1161 debug("Total memory available for interleaving 0x%08lx\n",
1162 memsize_total * 1024 * 1024);
1163 debug("Adjusting CS0_BNDS to account for unequal DIMM sizes in interleaved memory\n");
1164 ddr1->cs0_bnds = ((memsize_total * 1024 * 1024) - 1) >> 24;
1165 ddr2->cs0_bnds = ((memsize_total * 1024 * 1024) - 1) >> 24;
1166 debug("DDR1: cs0_bnds = 0x%08x\n", ddr1->cs0_bnds);
1167 debug("DDR2: cs0_bnds = 0x%08x\n", ddr2->cs0_bnds);
1168 }
1169
1170 ddr1_enabled = enable_ddr(1);
1171 ddr2_enabled = enable_ddr(2);
1172
1173 /*
1174 * Both controllers need to be enabled for interleaving.
1175 */
1176 if (ddr1_enabled && ddr2_enabled) {
1177 law_size_interleaved = 19 + __ilog2(memsize_total);
1178
1179 /*
1180 * Set up LAWBAR for DDR 1 space.
1181 */
1182 mcm->lawbar1 = ((CFG_DDR_SDRAM_BASE >> 12) & 0xfffff);
1183 mcm->lawar1 = (LAWAR_EN
1184 | LAWAR_TRGT_IF_DDR_INTERLEAVED
1185 | (LAWAR_SIZE & law_size_interleaved));
1186 debug("DDR: LAWBAR1=0x%08x\n", mcm->lawbar1);
1187 debug("DDR: LAWAR1=0x%08x\n", mcm->lawar1);
1188 debug("Interleaved memory size is 0x%08lx\n", memsize_total);
1189
1190#ifdef CONFIG_DDR_INTERLEAVE
1191#if (CFG_PAGE_INTERLEAVING == 1)
1192 printf("Page ");
1193#elif (CFG_BANK_INTERLEAVING == 1)
1194 printf("Bank ");
1195#elif (CFG_SUPER_BANK_INTERLEAVING == 1)
1196 printf("Super-bank ");
1197#else
1198 printf("Cache-line ");
1199#endif
1200#endif
1201 printf("Interleaved");
1202 return memsize_total * 1024 * 1024;
1203 } else {
1204 printf("Interleaved memory not enabled - check CS0 DIMM slots for both controllers.\n");
1205 return 0;
1206 }
1207
1208#else
1209 /*
1210 * Call spd_sdram() routine to init ddr1 - pass I2c address,
1211 * controller number, dimm number, and starting address.
1212 */
1213 memsize_ddr1_dimm1 = spd_init(SPD_EEPROM_ADDRESS1,
1214 1, 1,
1215 (unsigned int)memsize_total * 1024*1024);
1216 memsize_total += memsize_ddr1_dimm1;
1217
Jon Loeliger24911672007-08-27 12:41:03 -05001218#if defined(SPD_EEPROM_ADDRESS2)
Jon Loeliger9a655872006-05-19 13:26:34 -05001219 memsize_ddr1_dimm2 = spd_init(SPD_EEPROM_ADDRESS2,
1220 1, 2,
1221 (unsigned int)memsize_total * 1024*1024);
Jon Loeliger24911672007-08-27 12:41:03 -05001222#endif
Jon Loeliger9a655872006-05-19 13:26:34 -05001223 memsize_total += memsize_ddr1_dimm2;
1224
1225 /*
1226 * Enable the DDR controller - pass ddr controller number.
1227 */
1228 ddr1_enabled = enable_ddr(1);
1229
1230 /* Keep track of memory to be addressed by DDR1 */
1231 memsize_ddr1 = memsize_ddr1_dimm1 + memsize_ddr1_dimm2;
1232
1233 /*
1234 * First supported LAW size is 16M, at LAWAR_SIZE_16M == 23. Fnord.
1235 */
1236 if (ddr1_enabled) {
1237 law_size_ddr1 = 19 + __ilog2(memsize_ddr1);
1238
1239 /*
1240 * Set up LAWBAR for DDR 1 space.
1241 */
1242 mcm->lawbar1 = ((CFG_DDR_SDRAM_BASE >> 12) & 0xfffff);
1243 mcm->lawar1 = (LAWAR_EN
1244 | LAWAR_TRGT_IF_DDR1
1245 | (LAWAR_SIZE & law_size_ddr1));
1246 debug("DDR: LAWBAR1=0x%08x\n", mcm->lawbar1);
1247 debug("DDR: LAWAR1=0x%08x\n", mcm->lawar1);
1248 }
1249
1250#if (CONFIG_NUM_DDR_CONTROLLERS > 1)
1251 memsize_ddr2_dimm1 = spd_init(SPD_EEPROM_ADDRESS3,
1252 2, 1,
1253 (unsigned int)memsize_total * 1024*1024);
1254 memsize_total += memsize_ddr2_dimm1;
1255
1256 memsize_ddr2_dimm2 = spd_init(SPD_EEPROM_ADDRESS4,
1257 2, 2,
1258 (unsigned int)memsize_total * 1024*1024);
1259 memsize_total += memsize_ddr2_dimm2;
1260
1261 ddr2_enabled = enable_ddr(2);
1262
1263 /* Keep track of memory to be addressed by DDR2 */
1264 memsize_ddr2 = memsize_ddr2_dimm1 + memsize_ddr2_dimm2;
1265
1266 if (ddr2_enabled) {
1267 law_size_ddr2 = 19 + __ilog2(memsize_ddr2);
1268
1269 /*
1270 * Set up LAWBAR for DDR 2 space.
1271 */
1272 if (ddr1_enabled)
1273 mcm->lawbar8 = (((memsize_ddr1 * 1024 * 1024) >> 12)
1274 & 0xfffff);
1275 else
1276 mcm->lawbar8 = ((CFG_DDR_SDRAM_BASE >> 12) & 0xfffff);
1277
1278 mcm->lawar8 = (LAWAR_EN
1279 | LAWAR_TRGT_IF_DDR2
1280 | (LAWAR_SIZE & law_size_ddr2));
1281 debug("\nDDR: LAWBAR8=0x%08x\n", mcm->lawbar8);
1282 debug("DDR: LAWAR8=0x%08x\n", mcm->lawar8);
1283 }
Jon Loeligerd08b7232007-11-01 12:23:29 -05001284
1285 debug("\nMemory size of DDR2 = 0x%08lx\n", memsize_ddr2);
1286
Jon Loeliger9a655872006-05-19 13:26:34 -05001287#endif /* CONFIG_NUM_DDR_CONTROLLERS > 1 */
1288
Jon Loeligerd08b7232007-11-01 12:23:29 -05001289 debug("\nMemory size of DDR1 = 0x%08lx\n", memsize_ddr1);
Jon Loeliger9a655872006-05-19 13:26:34 -05001290
1291 /*
1292 * If neither DDR controller is enabled return 0.
1293 */
1294 if (!ddr1_enabled && !ddr2_enabled)
1295 return 0;
Jon Loeliger1fd56992006-10-10 17:19:03 -05001296
1297 printf("Non-interleaved");
1298 return memsize_total * 1024 * 1024;
Jon Loeliger9a655872006-05-19 13:26:34 -05001299
1300#endif /* CONFIG_DDR_INTERLEAVE */
1301}
1302
1303
Jon Loeligerdebb7352006-04-26 17:58:56 -05001304#endif /* CONFIG_SPD_EEPROM */
1305
1306
1307#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
1308
1309/*
1310 * Initialize all of memory for ECC, then enable errors.
1311 */
1312
1313void
1314ddr_enable_ecc(unsigned int dram_size)
1315{
1316 uint *p = 0;
1317 uint i = 0;
1318 volatile immap_t *immap = (immap_t *)CFG_IMMR;
1319 volatile ccsr_ddr_t *ddr1= &immap->im_ddr1;
1320
1321 dma_init();
1322
1323 for (*p = 0; p < (uint *)(8 * 1024); p++) {
1324 if (((unsigned int)p & 0x1f) == 0) {
1325 ppcDcbz((unsigned long) p);
1326 }
1327 *p = (unsigned int)CONFIG_MEM_INIT_VALUE;
1328 if (((unsigned int)p & 0x1c) == 0x1c) {
1329 ppcDcbf((unsigned long) p);
1330 }
1331 }
1332
Jon Loeliger1fd56992006-10-10 17:19:03 -05001333 dma_xfer((uint *)0x002000, 0x002000, (uint *)0); /* 8K */
1334 dma_xfer((uint *)0x004000, 0x004000, (uint *)0); /* 16K */
1335 dma_xfer((uint *)0x008000, 0x008000, (uint *)0); /* 32K */
1336 dma_xfer((uint *)0x010000, 0x010000, (uint *)0); /* 64K */
1337 dma_xfer((uint *)0x020000, 0x020000, (uint *)0); /* 128k */
1338 dma_xfer((uint *)0x040000, 0x040000, (uint *)0); /* 256k */
1339 dma_xfer((uint *)0x080000, 0x080000, (uint *)0); /* 512k */
1340 dma_xfer((uint *)0x100000, 0x100000, (uint *)0); /* 1M */
1341 dma_xfer((uint *)0x200000, 0x200000, (uint *)0); /* 2M */
1342 dma_xfer((uint *)0x400000, 0x400000, (uint *)0); /* 4M */
Jon Loeligerdebb7352006-04-26 17:58:56 -05001343
1344 for (i = 1; i < dram_size / 0x800000; i++) {
1345 dma_xfer((uint *)(0x800000*i), 0x800000, (uint *)0);
1346 }
1347
1348 /*
1349 * Enable errors for ECC.
1350 */
1351 debug("DMA DDR: err_disable = 0x%08x\n", ddr1->err_disable);
1352 ddr1->err_disable = 0x00000000;
Jon Loeligercd6d73d2006-08-29 09:48:49 -05001353 asm volatile("sync;isync");
Jon Loeligerdebb7352006-04-26 17:58:56 -05001354 debug("DMA DDR: err_disable = 0x%08x\n", ddr1->err_disable);
1355}
1356
1357#endif /* CONFIG_DDR_ECC && ! CONFIG_ECC_INIT_VIA_DDRCONTROLLER */