blob: 04d519a4c73682851d96e09d5c1cf7837f4ad8c2 [file] [log] [blame]
Eran Libertyf046ccd2005-07-28 10:08:46 -05001/*
Dave Liu19580e62007-09-18 12:37:57 +08002 * (C) Copyright 2006-2007 Freescale Semiconductor, Inc.
Dave Liuf6eda7f2006-10-25 14:41:21 -05003 *
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +01004 * (C) Copyright 2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denkcf48eb92006-04-16 10:51:58 +02006 *
Dave Liu5f820432006-11-03 19:33:44 -06007 * Copyright (C) 2004-2006 Freescale Semiconductor, Inc.
Eran Libertyf046ccd2005-07-28 10:08:46 -05008 * (C) Copyright 2003 Motorola Inc.
9 * Xianghua Xiao (X.Xiao@motorola.com)
10 *
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
Eran Libertyf046ccd2005-07-28 10:08:46 -050028 */
29
30#include <common.h>
31#include <asm/processor.h>
Stefan Roese76936402009-12-08 09:10:04 +010032#include <asm/io.h>
Eran Libertyf046ccd2005-07-28 10:08:46 -050033#include <i2c.h>
34#include <spd.h>
35#include <asm/mmu.h>
36#include <spd_sdram.h>
37
Kim Phillips81fd52c2008-03-28 10:18:53 -050038DECLARE_GLOBAL_DATA_PTR;
39
Kim Phillipsbbea46f2007-08-16 22:52:48 -050040void board_add_ram_info(int use_default)
41{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020042 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Kim Phillipsbbea46f2007-08-16 22:52:48 -050043 volatile ddr83xx_t *ddr = &immap->ddr;
Kim Phillips81fd52c2008-03-28 10:18:53 -050044 char buf[32];
Kim Phillipsbbea46f2007-08-16 22:52:48 -050045
46 printf(" (DDR%d", ((ddr->sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK)
47 >> SDRAM_CFG_SDRAM_TYPE_SHIFT) - 1);
48
Joe Hershberger2fef4022011-10-11 23:57:29 -050049#if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x)
50 if ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK) == SDRAM_CFG_DBW_16)
51 puts(", 16-bit");
52 else if ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK) == SDRAM_CFG_DBW_32)
53 puts(", 32-bit");
54 else
55 puts(", unknown width");
56#else
Kim Phillipsbbea46f2007-08-16 22:52:48 -050057 if (ddr->sdram_cfg & SDRAM_CFG_32_BE)
58 puts(", 32-bit");
59 else
60 puts(", 64-bit");
Joe Hershberger2fef4022011-10-11 23:57:29 -050061#endif
Kim Phillipsbbea46f2007-08-16 22:52:48 -050062
63 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
Kim Phillips81fd52c2008-03-28 10:18:53 -050064 puts(", ECC on");
Kim Phillipsbbea46f2007-08-16 22:52:48 -050065 else
Kim Phillips81fd52c2008-03-28 10:18:53 -050066 puts(", ECC off");
67
68 printf(", %s MHz)", strmhz(buf, gd->mem_clk));
Kim Phillipsbbea46f2007-08-16 22:52:48 -050069
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070#if defined(CONFIG_SYS_LB_SDRAM) && defined(CONFIG_SYS_LBC_SDRAM_SIZE)
Kim Phillipsbbea46f2007-08-16 22:52:48 -050071 puts("\nSDRAM: ");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020072 print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, " (local bus)");
Kim Phillipsbbea46f2007-08-16 22:52:48 -050073#endif
74}
75
Eran Libertyf046ccd2005-07-28 10:08:46 -050076#ifdef CONFIG_SPD_EEPROM
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020077#ifndef CONFIG_SYS_READ_SPD
78#define CONFIG_SYS_READ_SPD i2c_read
Eran Libertyf046ccd2005-07-28 10:08:46 -050079#endif
Andre Schwarz03c0a922011-04-14 14:54:05 +020080#ifndef SPD_EEPROM_OFFSET
81#define SPD_EEPROM_OFFSET 0
82#endif
83#ifndef SPD_EEPROM_ADDR_LEN
84#define SPD_EEPROM_ADDR_LEN 1
85#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -050086
Eran Libertyf046ccd2005-07-28 10:08:46 -050087/*
88 * Convert picoseconds into clock cycles (rounding up if needed).
89 */
Eran Libertyf046ccd2005-07-28 10:08:46 -050090int
91picos_to_clk(int picos)
92{
Kim Phillips35cf1552008-03-28 10:18:40 -050093 unsigned int mem_bus_clk;
Eran Libertyf046ccd2005-07-28 10:08:46 -050094 int clks;
95
Kim Phillips35cf1552008-03-28 10:18:40 -050096 mem_bus_clk = gd->mem_clk >> 1;
97 clks = picos / (1000000000 / (mem_bus_clk / 1000));
98 if (picos % (1000000000 / (mem_bus_clk / 1000)) != 0)
Dave Liuf6eda7f2006-10-25 14:41:21 -050099 clks++;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500100
101 return clks;
102}
103
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100104unsigned int banksize(unsigned char row_dens)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500105{
106 return ((row_dens >> 2) | ((row_dens & 3) << 6)) << 24;
107}
108
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100109int read_spd(uint addr)
110{
111 return ((int) addr);
112}
113
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100114#undef SPD_DEBUG
115#ifdef SPD_DEBUG
116static void spd_debug(spd_eeprom_t *spd)
117{
118 printf ("\nDIMM type: %-18.18s\n", spd->mpart);
119 printf ("SPD size: %d\n", spd->info_size);
120 printf ("EEPROM size: %d\n", 1 << spd->chip_size);
121 printf ("Memory type: %d\n", spd->mem_type);
122 printf ("Row addr: %d\n", spd->nrow_addr);
123 printf ("Column addr: %d\n", spd->ncol_addr);
124 printf ("# of rows: %d\n", spd->nrows);
125 printf ("Row density: %d\n", spd->row_dens);
126 printf ("# of banks: %d\n", spd->nbanks);
127 printf ("Data width: %d\n",
128 256 * spd->dataw_msb + spd->dataw_lsb);
129 printf ("Chip width: %d\n", spd->primw);
130 printf ("Refresh rate: %02X\n", spd->refresh);
131 printf ("CAS latencies: %02X\n", spd->cas_lat);
132 printf ("Write latencies: %02X\n", spd->write_lat);
133 printf ("tRP: %d\n", spd->trp);
134 printf ("tRCD: %d\n", spd->trcd);
135 printf ("\n");
136}
137#endif /* SPD_DEBUG */
138
139long int spd_sdram()
Eran Libertyf046ccd2005-07-28 10:08:46 -0500140{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200141 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500142 volatile ddr83xx_t *ddr = &immap->ddr;
143 volatile law83xx_t *ecm = &immap->sysconf.ddrlaw[0];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500144 spd_eeprom_t spd;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800145 unsigned int n_ranks;
146 unsigned int odt_rd_cfg, odt_wr_cfg;
147 unsigned char twr_clk, twtr_clk;
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500148 unsigned int sdram_type;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500149 unsigned int memsize;
150 unsigned int law_size;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500151 unsigned char caslat, caslat_ctrl;
Kim Phillips9da752e2011-11-15 22:59:51 +0000152 unsigned int trfc, trfc_clk, trfc_low;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800153 unsigned int trcd_clk, trtp_clk;
154 unsigned char cke_min_clk;
155 unsigned char add_lat, wr_lat;
156 unsigned char wr_data_delay;
157 unsigned char four_act;
158 unsigned char cpo;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500159 unsigned char burstlen;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800160 unsigned char odt_cfg, mode_odt_enable;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500161 unsigned int max_bus_clk;
162 unsigned int max_data_rate, effective_data_rate;
163 unsigned int ddrc_clk;
164 unsigned int refresh_clk;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800165 unsigned int sdram_cfg;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500166 unsigned int ddrc_ecc_enable;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800167 unsigned int pvr = get_pvr();
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500168
Stefan Roese76936402009-12-08 09:10:04 +0100169 /*
170 * First disable the memory controller (could be enabled
171 * by the debugger)
172 */
173 clrsetbits_be32(&ddr->sdram_cfg, SDRAM_CFG_MEM_EN, 0);
174 sync();
175 isync();
176
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100177 /* Read SPD parameters with I2C */
Andre Schwarz03c0a922011-04-14 14:54:05 +0200178 CONFIG_SYS_READ_SPD(SPD_EEPROM_ADDRESS, SPD_EEPROM_OFFSET,
179 SPD_EEPROM_ADDR_LEN, (uchar *) &spd, sizeof(spd));
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100180#ifdef SPD_DEBUG
181 spd_debug(&spd);
182#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500183 /* Check the memory type */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800184 if (spd.mem_type != SPD_MEMTYPE_DDR && spd.mem_type != SPD_MEMTYPE_DDR2) {
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500185 debug("DDR: Module mem type is %02X\n", spd.mem_type);
Dave Liuf6eda7f2006-10-25 14:41:21 -0500186 return 0;
187 }
188
189 /* Check the number of physical bank */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800190 if (spd.mem_type == SPD_MEMTYPE_DDR) {
191 n_ranks = spd.nrows;
192 } else {
193 n_ranks = (spd.nrows & 0x7) + 1;
194 }
195
196 if (n_ranks > 2) {
197 printf("DDR: The number of physical bank is %02X\n", n_ranks);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500198 return 0;
199 }
200
Dave Liuf6eda7f2006-10-25 14:41:21 -0500201 /* Check if the number of row of the module is in the range of DDRC */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800202 if (spd.nrow_addr < 12 || spd.nrow_addr > 15) {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500203 printf("DDR: Row number is out of range of DDRC, row=%02X\n",
204 spd.nrow_addr);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500205 return 0;
206 }
207
Dave Liuf6eda7f2006-10-25 14:41:21 -0500208 /* Check if the number of col of the module is in the range of DDRC */
209 if (spd.ncol_addr < 8 || spd.ncol_addr > 11) {
210 printf("DDR: Col number is out of range of DDRC, col=%02X\n",
211 spd.ncol_addr);
212 return 0;
213 }
Xie Xiaobod61853c2007-02-14 18:27:17 +0800214
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200215#ifdef CONFIG_SYS_DDRCDR_VALUE
Xie Xiaobod61853c2007-02-14 18:27:17 +0800216 /*
217 * Adjust DDR II IO voltage biasing. It just makes it work.
218 */
219 if(spd.mem_type == SPD_MEMTYPE_DDR2) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200220 immap->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800221 }
Dave Liu19580e62007-09-18 12:37:57 +0800222 udelay(50000);
Xie Xiaobod61853c2007-02-14 18:27:17 +0800223#endif
224
225 /*
226 * ODT configuration recommendation from DDR Controller Chapter.
227 */
228 odt_rd_cfg = 0; /* Never assert ODT */
229 odt_wr_cfg = 0; /* Never assert ODT */
230 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
231 odt_wr_cfg = 1; /* Assert ODT on writes to CSn */
232 }
233
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100234 /* Setup DDR chip select register */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200235#ifdef CONFIG_SYS_83XX_DDR_USES_CS0
Dave Liu5f820432006-11-03 19:33:44 -0600236 ddr->csbnds[0].csbnds = (banksize(spd.row_dens) >> 24) - 1;
237 ddr->cs_config[0] = ( 1 << 31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800238 | (odt_rd_cfg << 20)
239 | (odt_wr_cfg << 16)
Jerry Van Baren394d30d2009-03-13 11:40:10 -0400240 | ((spd.nbanks == 8 ? 1 : 0) << 14)
241 | ((spd.nrow_addr - 12) << 8)
Dave Liu5f820432006-11-03 19:33:44 -0600242 | (spd.ncol_addr - 8) );
243 debug("\n");
244 debug("cs0_bnds = 0x%08x\n",ddr->csbnds[0].csbnds);
245 debug("cs0_config = 0x%08x\n",ddr->cs_config[0]);
246
Xie Xiaobod61853c2007-02-14 18:27:17 +0800247 if (n_ranks == 2) {
Dave Liu5f820432006-11-03 19:33:44 -0600248 ddr->csbnds[1].csbnds = ( (banksize(spd.row_dens) >> 8)
249 | ((banksize(spd.row_dens) >> 23) - 1) );
250 ddr->cs_config[1] = ( 1<<31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800251 | (odt_rd_cfg << 20)
252 | (odt_wr_cfg << 16)
Jerry Van Baren394d30d2009-03-13 11:40:10 -0400253 | ((spd.nbanks == 8 ? 1 : 0) << 14)
254 | ((spd.nrow_addr - 12) << 8)
255 | (spd.ncol_addr - 8) );
Dave Liu5f820432006-11-03 19:33:44 -0600256 debug("cs1_bnds = 0x%08x\n",ddr->csbnds[1].csbnds);
257 debug("cs1_config = 0x%08x\n",ddr->cs_config[1]);
258 }
259
260#else
Eran Libertyf046ccd2005-07-28 10:08:46 -0500261 ddr->csbnds[2].csbnds = (banksize(spd.row_dens) >> 24) - 1;
262 ddr->cs_config[2] = ( 1 << 31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800263 | (odt_rd_cfg << 20)
264 | (odt_wr_cfg << 16)
Jerry Van Baren394d30d2009-03-13 11:40:10 -0400265 | ((spd.nbanks == 8 ? 1 : 0) << 14)
266 | ((spd.nrow_addr - 12) << 8)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500267 | (spd.ncol_addr - 8) );
268 debug("\n");
269 debug("cs2_bnds = 0x%08x\n",ddr->csbnds[2].csbnds);
270 debug("cs2_config = 0x%08x\n",ddr->cs_config[2]);
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500271
Xie Xiaobod61853c2007-02-14 18:27:17 +0800272 if (n_ranks == 2) {
Eran Libertyf046ccd2005-07-28 10:08:46 -0500273 ddr->csbnds[3].csbnds = ( (banksize(spd.row_dens) >> 8)
274 | ((banksize(spd.row_dens) >> 23) - 1) );
275 ddr->cs_config[3] = ( 1<<31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800276 | (odt_rd_cfg << 20)
277 | (odt_wr_cfg << 16)
Jerry Van Baren394d30d2009-03-13 11:40:10 -0400278 | ((spd.nbanks == 8 ? 1 : 0) << 14)
279 | ((spd.nrow_addr - 12) << 8)
280 | (spd.ncol_addr - 8) );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500281 debug("cs3_bnds = 0x%08x\n",ddr->csbnds[3].csbnds);
282 debug("cs3_config = 0x%08x\n",ddr->cs_config[3]);
283 }
Timur Tabi2ad6b512006-10-31 18:44:42 -0600284#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500285
Eran Libertyf046ccd2005-07-28 10:08:46 -0500286 /*
287 * Figure out memory size in Megabytes.
288 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800289 memsize = n_ranks * banksize(spd.row_dens) / 0x100000;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500290
291 /*
292 * First supported LAW size is 16M, at LAWAR_SIZE_16M == 23.
293 */
294 law_size = 19 + __ilog2(memsize);
295
296 /*
297 * Set up LAWBAR for all of DDR.
298 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200299 ecm->bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500300 ecm->ar = (LAWAR_EN | LAWAR_TRGT_IF_DDR | (LAWAR_SIZE & law_size));
301 debug("DDR:bar=0x%08x\n", ecm->bar);
302 debug("DDR:ar=0x%08x\n", ecm->ar);
303
304 /*
Dave Liuf6eda7f2006-10-25 14:41:21 -0500305 * Find the largest CAS by locating the highest 1 bit
306 * in the spd.cas_lat field. Translate it to a DDR
307 * controller field value:
308 *
Xie Xiaobod61853c2007-02-14 18:27:17 +0800309 * CAS Lat DDR I DDR II Ctrl
310 * Clocks SPD Bit SPD Bit Value
311 * ------- ------- ------- -----
312 * 1.0 0 0001
313 * 1.5 1 0010
314 * 2.0 2 2 0011
315 * 2.5 3 0100
316 * 3.0 4 3 0101
317 * 3.5 5 0110
318 * 4.0 6 4 0111
319 * 4.5 1000
320 * 5.0 5 1001
Eran Libertyf046ccd2005-07-28 10:08:46 -0500321 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500322 caslat = __ilog2(spd.cas_lat);
Xie Xiaobod61853c2007-02-14 18:27:17 +0800323 if ((spd.mem_type == SPD_MEMTYPE_DDR)
324 && (caslat > 6)) {
325 printf("DDR I: Invalid SPD CAS Latency: 0x%x.\n", spd.cas_lat);
326 return 0;
327 } else if (spd.mem_type == SPD_MEMTYPE_DDR2
328 && (caslat < 2 || caslat > 5)) {
329 printf("DDR II: Invalid SPD CAS Latency: 0x%x.\n",
330 spd.cas_lat);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500331 return 0;
332 }
Xie Xiaobod61853c2007-02-14 18:27:17 +0800333 debug("DDR: caslat SPD bit is %d\n", caslat);
334
Dave Liuf6eda7f2006-10-25 14:41:21 -0500335 max_bus_clk = 1000 *10 / (((spd.clk_cycle & 0xF0) >> 4) * 10
336 + (spd.clk_cycle & 0x0f));
337 max_data_rate = max_bus_clk * 2;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500338
Wolfgang Denk8ed44d92008-10-19 02:35:50 +0200339 debug("DDR:Module maximum data rate is: %d MHz\n", max_data_rate);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500340
Kim Phillips35cf1552008-03-28 10:18:40 -0500341 ddrc_clk = gd->mem_clk / 1000000;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800342 effective_data_rate = 0;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500343
Dave Liu5b005552009-02-25 12:31:32 +0800344 if (max_data_rate >= 460) { /* it is DDR2-800, 667, 533 */
345 if (spd.cas_lat & 0x08)
346 caslat = 3;
347 else
348 caslat = 4;
349 if (ddrc_clk <= 460 && ddrc_clk > 350)
350 effective_data_rate = 400;
351 else if (ddrc_clk <=350 && ddrc_clk > 280)
352 effective_data_rate = 333;
353 else if (ddrc_clk <= 280 && ddrc_clk > 230)
354 effective_data_rate = 266;
355 else
356 effective_data_rate = 200;
357 } else if (max_data_rate >= 390 && max_data_rate < 460) { /* it is DDR 400 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800358 if (ddrc_clk <= 460 && ddrc_clk > 350) {
359 /* DDR controller clk at 350~460 */
Dave Liu5f820432006-11-03 19:33:44 -0600360 effective_data_rate = 400; /* 5ns */
361 caslat = caslat;
362 } else if (ddrc_clk <= 350 && ddrc_clk > 280) {
363 /* DDR controller clk at 280~350 */
364 effective_data_rate = 333; /* 6ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600365 if (spd.clk_cycle2 == 0x60)
Dave Liu5f820432006-11-03 19:33:44 -0600366 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600367 else
Dave Liu5f820432006-11-03 19:33:44 -0600368 caslat = caslat;
Dave Liu5f820432006-11-03 19:33:44 -0600369 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
370 /* DDR controller clk at 230~280 */
371 effective_data_rate = 266; /* 7.5ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600372 if (spd.clk_cycle3 == 0x75)
Dave Liu5f820432006-11-03 19:33:44 -0600373 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800374 else if (spd.clk_cycle2 == 0x75)
Dave Liu5f820432006-11-03 19:33:44 -0600375 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600376 else
Dave Liu5f820432006-11-03 19:33:44 -0600377 caslat = caslat;
Dave Liu5f820432006-11-03 19:33:44 -0600378 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
379 /* DDR controller clk at 90~230 */
380 effective_data_rate = 200; /* 10ns */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800381 if (spd.clk_cycle3 == 0xa0)
Dave Liu5f820432006-11-03 19:33:44 -0600382 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800383 else if (spd.clk_cycle2 == 0xa0)
Dave Liu5f820432006-11-03 19:33:44 -0600384 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600385 else
Dave Liu5f820432006-11-03 19:33:44 -0600386 caslat = caslat;
Dave Liu5f820432006-11-03 19:33:44 -0600387 }
Dave Liuf6eda7f2006-10-25 14:41:21 -0500388 } else if (max_data_rate >= 323) { /* it is DDR 333 */
389 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liu5f820432006-11-03 19:33:44 -0600390 /* DDR controller clk at 280~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500391 effective_data_rate = 333; /* 6ns */
392 caslat = caslat;
393 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600394 /* DDR controller clk at 230~280 */
395 effective_data_rate = 266; /* 7.5ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600396 if (spd.clk_cycle2 == 0x75)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500397 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600398 else
Dave Liu5f820432006-11-03 19:33:44 -0600399 caslat = caslat;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500400 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600401 /* DDR controller clk at 90~230 */
402 effective_data_rate = 200; /* 10ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600403 if (spd.clk_cycle3 == 0xa0)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500404 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800405 else if (spd.clk_cycle2 == 0xa0)
Dave Liu5f820432006-11-03 19:33:44 -0600406 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600407 else
Dave Liu5f820432006-11-03 19:33:44 -0600408 caslat = caslat;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500409 }
410 } else if (max_data_rate >= 256) { /* it is DDR 266 */
411 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liu5f820432006-11-03 19:33:44 -0600412 /* DDR controller clk at 280~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500413 printf("DDR: DDR controller freq is more than "
414 "max data rate of the module\n");
415 return 0;
416 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600417 /* DDR controller clk at 230~280 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500418 effective_data_rate = 266; /* 7.5ns */
419 caslat = caslat;
420 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600421 /* DDR controller clk at 90~230 */
422 effective_data_rate = 200; /* 10ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600423 if (spd.clk_cycle2 == 0xa0)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500424 caslat = caslat - 1;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500425 }
426 } else if (max_data_rate >= 190) { /* it is DDR 200 */
427 if (ddrc_clk <= 350 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600428 /* DDR controller clk at 230~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500429 printf("DDR: DDR controller freq is more than "
430 "max data rate of the module\n");
431 return 0;
432 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600433 /* DDR controller clk at 90~230 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500434 effective_data_rate = 200; /* 10ns */
435 caslat = caslat;
436 }
Eran Libertyf046ccd2005-07-28 10:08:46 -0500437 }
438
Wolfgang Denk8ed44d92008-10-19 02:35:50 +0200439 debug("DDR:Effective data rate is: %dMHz\n", effective_data_rate);
Dave Liu5f820432006-11-03 19:33:44 -0600440 debug("DDR:The MSB 1 of CAS Latency is: %d\n", caslat);
Timur Tabibed85ca2006-10-31 18:13:36 -0600441
Dave Liu5f820432006-11-03 19:33:44 -0600442 /*
443 * Errata DDR6 work around: input enable 2 cycles earlier.
444 * including MPC834x Rev1.0/1.1 and MPC8360 Rev1.1/1.2.
445 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800446 if(PVR_MAJ(pvr) <= 1 && spd.mem_type == SPD_MEMTYPE_DDR){
447 if (caslat == 2)
448 ddr->debug_reg = 0x201c0000; /* CL=2 */
449 else if (caslat == 3)
450 ddr->debug_reg = 0x202c0000; /* CL=2.5 */
451 else if (caslat == 4)
452 ddr->debug_reg = 0x202c0000; /* CL=3.0 */
Timur Tabie857a5b2006-11-28 12:09:35 -0600453
Xie Xiaobod61853c2007-02-14 18:27:17 +0800454 __asm__ __volatile__ ("sync");
Timur Tabibed85ca2006-10-31 18:13:36 -0600455
Xie Xiaobod61853c2007-02-14 18:27:17 +0800456 debug("Errata DDR6 (debug_reg=0x%08x)\n", ddr->debug_reg);
457 }
Timur Tabibed85ca2006-10-31 18:13:36 -0600458
Eran Libertyf046ccd2005-07-28 10:08:46 -0500459 /*
Xie Xiaobod61853c2007-02-14 18:27:17 +0800460 * Convert caslat clocks to DDR controller value.
461 * Force caslat_ctrl to be DDR Controller field-sized.
Eran Libertyf046ccd2005-07-28 10:08:46 -0500462 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800463 if (spd.mem_type == SPD_MEMTYPE_DDR) {
464 caslat_ctrl = (caslat + 1) & 0x07;
465 } else {
466 caslat_ctrl = (2 * caslat - 1) & 0x0f;
467 }
468
469 debug("DDR: effective data rate is %d MHz\n", effective_data_rate);
470 debug("DDR: caslat SPD bit is %d, controller field is 0x%x\n",
471 caslat, caslat_ctrl);
472
473 /*
474 * Timing Config 0.
475 * Avoid writing for DDR I.
476 */
477 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
478 unsigned char taxpd_clk = 8; /* By the book. */
479 unsigned char tmrd_clk = 2; /* By the book. */
480 unsigned char act_pd_exit = 2; /* Empirical? */
481 unsigned char pre_pd_exit = 6; /* Empirical? */
482
483 ddr->timing_cfg_0 = (0
484 | ((act_pd_exit & 0x7) << 20) /* ACT_PD_EXIT */
485 | ((pre_pd_exit & 0x7) << 16) /* PRE_PD_EXIT */
486 | ((taxpd_clk & 0xf) << 8) /* ODT_PD_EXIT */
487 | ((tmrd_clk & 0xf) << 0) /* MRS_CYC */
488 );
489 debug("DDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0);
490 }
491
492 /*
493 * For DDR I, WRREC(Twr) and WRTORD(Twtr) are not in SPD,
494 * use conservative value.
495 * For DDR II, they are bytes 36 and 37, in quarter nanos.
496 */
497
498 if (spd.mem_type == SPD_MEMTYPE_DDR) {
499 twr_clk = 3; /* Clocks */
500 twtr_clk = 1; /* Clocks */
501 } else {
502 twr_clk = picos_to_clk(spd.twr * 250);
503 twtr_clk = picos_to_clk(spd.twtr * 250);
Dave Liu5b005552009-02-25 12:31:32 +0800504 if (twtr_clk < 2)
505 twtr_clk = 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800506 }
507
508 /*
509 * Calculate Trfc, in picos.
510 * DDR I: Byte 42 straight up in ns.
511 * DDR II: Byte 40 and 42 swizzled some, in ns.
512 */
513 if (spd.mem_type == SPD_MEMTYPE_DDR) {
514 trfc = spd.trfc * 1000; /* up to ps */
515 } else {
516 unsigned int byte40_table_ps[8] = {
517 0,
518 250,
519 330,
520 500,
521 660,
522 750,
523 0,
524 0
525 };
526
527 trfc = (((spd.trctrfc_ext & 0x1) * 256) + spd.trfc) * 1000
528 + byte40_table_ps[(spd.trctrfc_ext >> 1) & 0x7];
529 }
530 trfc_clk = picos_to_clk(trfc);
531
532 /*
533 * Trcd, Byte 29, from quarter nanos to ps and clocks.
534 */
535 trcd_clk = picos_to_clk(spd.trcd * 250) & 0x7;
536
537 /*
538 * Convert trfc_clk to DDR controller fields. DDR I should
539 * fit in the REFREC field (16-19) of TIMING_CFG_1, but the
540 * 83xx controller has an extended REFREC field of three bits.
541 * The controller automatically adds 8 clocks to this value,
542 * so preadjust it down 8 first before splitting it up.
543 */
544 trfc_low = (trfc_clk - 8) & 0xf;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500545
546 ddr->timing_cfg_1 =
Xie Xiaobod61853c2007-02-14 18:27:17 +0800547 (((picos_to_clk(spd.trp * 250) & 0x07) << 28 ) | /* PRETOACT */
548 ((picos_to_clk(spd.tras * 1000) & 0x0f ) << 24 ) | /* ACTTOPRE */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200549 (trcd_clk << 20 ) | /* ACTTORW */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800550 (caslat_ctrl << 16 ) | /* CASLAT */
551 (trfc_low << 12 ) | /* REFEC */
552 ((twr_clk & 0x07) << 8) | /* WRRREC */
553 ((picos_to_clk(spd.trrd * 250) & 0x07) << 4) | /* ACTTOACT */
554 ((twtr_clk & 0x07) << 0) /* WRTORD */
555 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500556
Xie Xiaobod61853c2007-02-14 18:27:17 +0800557 /*
558 * Additive Latency
559 * For DDR I, 0.
560 * For DDR II, with ODT enabled, use "a value" less than ACTTORW,
561 * which comes from Trcd, and also note that:
562 * add_lat + caslat must be >= 4
563 */
564 add_lat = 0;
565 if (spd.mem_type == SPD_MEMTYPE_DDR2
566 && (odt_wr_cfg || odt_rd_cfg)
567 && (caslat < 4)) {
Dave Liu5b005552009-02-25 12:31:32 +0800568 add_lat = 4 - caslat;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800569 if ((add_lat + caslat) < 4) {
570 add_lat = 0;
571 }
572 }
573
574 /*
575 * Write Data Delay
576 * Historically 0x2 == 4/8 clock delay.
577 * Empirically, 0x3 == 6/8 clock delay is suggested for DDR I 266.
578 */
579 wr_data_delay = 2;
Andre Schwarz03c0a922011-04-14 14:54:05 +0200580#ifdef CONFIG_SYS_DDR_WRITE_DATA_DELAY
581 wr_data_delay = CONFIG_SYS_DDR_WRITE_DATA_DELAY;
582#endif
Xie Xiaobod61853c2007-02-14 18:27:17 +0800583
584 /*
585 * Write Latency
586 * Read to Precharge
587 * Minimum CKE Pulse Width.
588 * Four Activate Window
589 */
590 if (spd.mem_type == SPD_MEMTYPE_DDR) {
591 /*
592 * This is a lie. It should really be 1, but if it is
593 * set to 1, bits overlap into the old controller's
594 * otherwise unused ACSM field. If we leave it 0, then
595 * the HW will magically treat it as 1 for DDR 1. Oh Yea.
596 */
597 wr_lat = 0;
598
599 trtp_clk = 2; /* By the book. */
600 cke_min_clk = 1; /* By the book. */
601 four_act = 1; /* By the book. */
602
603 } else {
604 wr_lat = caslat - 1;
605
606 /* Convert SPD value from quarter nanos to picos. */
607 trtp_clk = picos_to_clk(spd.trtp * 250);
Dave Liu5b005552009-02-25 12:31:32 +0800608 if (trtp_clk < 2)
609 trtp_clk = 2;
610 trtp_clk += add_lat;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800611
612 cke_min_clk = 3; /* By the book. */
613 four_act = picos_to_clk(37500); /* By the book. 1k pages? */
614 }
615
616 /*
617 * Empirically set ~MCAS-to-preamble override for DDR 2.
618 * Your milage will vary.
619 */
620 cpo = 0;
621 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
Andre Schwarz03c0a922011-04-14 14:54:05 +0200622#ifdef CONFIG_SYS_DDR_CPO
623 cpo = CONFIG_SYS_DDR_CPO;
624#else
Dave Liu061aad42008-01-10 23:09:33 +0800625 if (effective_data_rate == 266) {
626 cpo = 0x4; /* READ_LAT + 1/2 */
Dave Liu5b005552009-02-25 12:31:32 +0800627 } else if (effective_data_rate == 333) {
628 cpo = 0x6; /* READ_LAT + 1 */
629 } else if (effective_data_rate == 400) {
Dave Liu19580e62007-09-18 12:37:57 +0800630 cpo = 0x7; /* READ_LAT + 5/4 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800631 } else {
632 /* Automatic calibration */
633 cpo = 0x1f;
634 }
Andre Schwarz03c0a922011-04-14 14:54:05 +0200635#endif
Xie Xiaobod61853c2007-02-14 18:27:17 +0800636 }
637
638 ddr->timing_cfg_2 = (0
639 | ((add_lat & 0x7) << 28) /* ADD_LAT */
640 | ((cpo & 0x1f) << 23) /* CPO */
641 | ((wr_lat & 0x7) << 19) /* WR_LAT */
642 | ((trtp_clk & 0x7) << 13) /* RD_TO_PRE */
643 | ((wr_data_delay & 0x7) << 10) /* WR_DATA_DELAY */
644 | ((cke_min_clk & 0x7) << 6) /* CKE_PLS */
645 | ((four_act & 0x1f) << 0) /* FOUR_ACT */
646 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500647
648 debug("DDR:timing_cfg_1=0x%08x\n", ddr->timing_cfg_1);
649 debug("DDR:timing_cfg_2=0x%08x\n", ddr->timing_cfg_2);
650
Dave Liuf6eda7f2006-10-25 14:41:21 -0500651 /* Check DIMM data bus width */
Lee Nipper3f9c5422008-04-10 09:35:06 -0500652 if (spd.dataw_lsb < 64) {
Dave Liu036575c2007-08-04 13:37:39 +0800653 if (spd.mem_type == SPD_MEMTYPE_DDR)
654 burstlen = 0x03; /* 32 bit data bus, burst len is 8 */
Dave Liu49bb5992007-08-10 15:48:59 +0800655 else
Dave Liu036575c2007-08-04 13:37:39 +0800656 burstlen = 0x02; /* 32 bit data bus, burst len is 4 */
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500657 debug("\n DDR DIMM: data bus width is 32 bit");
Dave Liu5f820432006-11-03 19:33:44 -0600658 } else {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500659 burstlen = 0x02; /* Others act as 64 bit bus, burst len is 4 */
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500660 debug("\n DDR DIMM: data bus width is 64 bit");
Dave Liuf6eda7f2006-10-25 14:41:21 -0500661 }
662
663 /* Is this an ECC DDR chip? */
Timur Tabie857a5b2006-11-28 12:09:35 -0600664 if (spd.config == 0x02)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500665 debug(" with ECC\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600666 else
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500667 debug(" without ECC\n");
Dave Liuf6eda7f2006-10-25 14:41:21 -0500668
669 /* Burst length is always 4 for 64 bit data bus, 8 for 32 bit data bus,
670 Burst type is sequential
Eran Libertyf046ccd2005-07-28 10:08:46 -0500671 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800672 if (spd.mem_type == SPD_MEMTYPE_DDR) {
673 switch (caslat) {
Dave Liu5f820432006-11-03 19:33:44 -0600674 case 1:
675 ddr->sdram_mode = 0x50 | burstlen; /* CL=1.5 */
676 break;
677 case 2:
678 ddr->sdram_mode = 0x20 | burstlen; /* CL=2.0 */
679 break;
680 case 3:
681 ddr->sdram_mode = 0x60 | burstlen; /* CL=2.5 */
682 break;
683 case 4:
684 ddr->sdram_mode = 0x30 | burstlen; /* CL=3.0 */
685 break;
686 default:
687 printf("DDR:only CL 1.5, 2.0, 2.5, 3.0 is supported\n");
688 return 0;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800689 }
690 } else {
691 mode_odt_enable = 0x0; /* Default disabled */
692 if (odt_wr_cfg || odt_rd_cfg) {
693 /*
694 * Bits 6 and 2 in Extended MRS(1)
695 * Bit 2 == 0x04 == 75 Ohm, with 2 DIMM modules.
696 * Bit 6 == 0x40 == 150 Ohm, with 1 DIMM module.
697 */
698 mode_odt_enable = 0x40; /* 150 Ohm */
699 }
700
701 ddr->sdram_mode =
702 (0
703 | (1 << (16 + 10)) /* DQS Differential disable */
Andre Schwarz03c0a922011-04-14 14:54:05 +0200704#ifdef CONFIG_SYS_DDR_MODE_WEAK
705 | (1 << (16 + 1)) /* weak driver (~60%) */
706#endif
Xie Xiaobod61853c2007-02-14 18:27:17 +0800707 | (add_lat << (16 + 3)) /* Additive Latency in EMRS1 */
708 | (mode_odt_enable << 16) /* ODT Enable in EMRS1 */
Xie Xiaobo6fbf2612007-03-09 19:08:25 +0800709 | ((twr_clk - 1) << 9) /* Write Recovery Autopre */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800710 | (caslat << 4) /* caslat */
711 | (burstlen << 0) /* Burst length */
712 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500713 }
714 debug("DDR:sdram_mode=0x%08x\n", ddr->sdram_mode);
715
Xie Xiaobod61853c2007-02-14 18:27:17 +0800716 /*
717 * Clear EMRS2 and EMRS3.
718 */
719 ddr->sdram_mode2 = 0;
720 debug("DDR: sdram_mode2 = 0x%08x\n", ddr->sdram_mode2);
721
Dave Liu5f820432006-11-03 19:33:44 -0600722 switch (spd.refresh) {
723 case 0x00:
724 case 0x80:
725 refresh_clk = picos_to_clk(15625000);
726 break;
727 case 0x01:
728 case 0x81:
729 refresh_clk = picos_to_clk(3900000);
730 break;
731 case 0x02:
732 case 0x82:
733 refresh_clk = picos_to_clk(7800000);
734 break;
735 case 0x03:
736 case 0x83:
737 refresh_clk = picos_to_clk(31300000);
738 break;
739 case 0x04:
740 case 0x84:
741 refresh_clk = picos_to_clk(62500000);
742 break;
743 case 0x05:
744 case 0x85:
745 refresh_clk = picos_to_clk(125000000);
746 break;
747 default:
748 refresh_clk = 0x512;
749 break;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500750 }
751
752 /*
753 * Set BSTOPRE to 0x100 for page mode
754 * If auto-charge is used, set BSTOPRE = 0
755 */
Dave Liu5f820432006-11-03 19:33:44 -0600756 ddr->sdram_interval = ((refresh_clk & 0x3fff) << 16) | 0x100;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500757 debug("DDR:sdram_interval=0x%08x\n", ddr->sdram_interval);
758
Xie Xiaobod61853c2007-02-14 18:27:17 +0800759 /*
760 * SDRAM Cfg 2
761 */
762 odt_cfg = 0;
Dave Liu19580e62007-09-18 12:37:57 +0800763#ifndef CONFIG_NEVER_ASSERT_ODT_TO_CPU
Xie Xiaobod61853c2007-02-14 18:27:17 +0800764 if (odt_rd_cfg | odt_wr_cfg) {
765 odt_cfg = 0x2; /* ODT to IOs during reads */
766 }
Dave Liu19580e62007-09-18 12:37:57 +0800767#endif
Xie Xiaobod61853c2007-02-14 18:27:17 +0800768 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
769 ddr->sdram_cfg2 = (0
770 | (0 << 26) /* True DQS */
771 | (odt_cfg << 21) /* ODT only read */
772 | (1 << 12) /* 1 refresh at a time */
773 );
774
775 debug("DDR: sdram_cfg2 = 0x%08x\n", ddr->sdram_cfg2);
776 }
777
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200778#ifdef CONFIG_SYS_DDR_SDRAM_CLK_CNTL /* Optional platform specific value */
779 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Paul Gortmaker91e25762007-01-16 11:38:14 -0500780#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500781 debug("DDR:sdram_clk_cntl=0x%08x\n", ddr->sdram_clk_cntl);
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100782
Eran Libertyf046ccd2005-07-28 10:08:46 -0500783 asm("sync;isync");
784
Dave Liuf6eda7f2006-10-25 14:41:21 -0500785 udelay(600);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500786
787 /*
Dave Liu5f820432006-11-03 19:33:44 -0600788 * Figure out the settings for the sdram_cfg register. Build up
789 * the value in 'sdram_cfg' before writing since the write into
Eran Libertyf046ccd2005-07-28 10:08:46 -0500790 * the register will actually enable the memory controller, and all
791 * settings must be done before enabling.
792 *
793 * sdram_cfg[0] = 1 (ddr sdram logic enable)
794 * sdram_cfg[1] = 1 (self-refresh-enable)
Xie Xiaobod61853c2007-02-14 18:27:17 +0800795 * sdram_cfg[5:7] = (SDRAM type = DDR SDRAM)
796 * 010 DDR 1 SDRAM
797 * 011 DDR 2 SDRAM
Dave Liuf6eda7f2006-10-25 14:41:21 -0500798 * sdram_cfg[12] = 0 (32_BE =0 , 64 bit bus mode)
799 * sdram_cfg[13] = 0 (8_BE =0, 4-beat bursts)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500800 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800801 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500802 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR1;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800803 else
Kim Phillips4cc1cd52007-08-17 09:30:00 -0500804 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800805
806 sdram_cfg = (0
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500807 | SDRAM_CFG_MEM_EN /* DDR enable */
808 | SDRAM_CFG_SREN /* Self refresh */
809 | sdram_type /* SDRAM type */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800810 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500811
Dave Liuf6eda7f2006-10-25 14:41:21 -0500812 /* sdram_cfg[3] = RD_EN - registered DIMM enable */
Timur Tabie857a5b2006-11-28 12:09:35 -0600813 if (spd.mod_attr & 0x02)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500814 sdram_cfg |= SDRAM_CFG_RD_EN;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500815
Dave Liuf6eda7f2006-10-25 14:41:21 -0500816 /* The DIMM is 32bit width */
Lee Nipper3f9c5422008-04-10 09:35:06 -0500817 if (spd.dataw_lsb < 64) {
Dave Liu036575c2007-08-04 13:37:39 +0800818 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500819 sdram_cfg |= SDRAM_CFG_32_BE | SDRAM_CFG_8_BE;
Dave Liu036575c2007-08-04 13:37:39 +0800820 if (spd.mem_type == SPD_MEMTYPE_DDR2)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500821 sdram_cfg |= SDRAM_CFG_32_BE;
Dave Liu036575c2007-08-04 13:37:39 +0800822 }
Timur Tabie857a5b2006-11-28 12:09:35 -0600823
Dave Liuf6eda7f2006-10-25 14:41:21 -0500824 ddrc_ecc_enable = 0;
825
Eran Libertyf046ccd2005-07-28 10:08:46 -0500826#if defined(CONFIG_DDR_ECC)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500827 /* Enable ECC with sdram_cfg[2] */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500828 if (spd.config == 0x02) {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500829 sdram_cfg |= 0x20000000;
830 ddrc_ecc_enable = 1;
831 /* disable error detection */
832 ddr->err_disable = ~ECC_ERROR_ENABLE;
833 /* set single bit error threshold to maximum value,
834 * reset counter to zero */
835 ddr->err_sbe = (255 << ECC_ERROR_MAN_SBET_SHIFT) |
Dave Liu5f820432006-11-03 19:33:44 -0600836 (0 << ECC_ERROR_MAN_SBEC_SHIFT);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500837 }
Dave Liuf6eda7f2006-10-25 14:41:21 -0500838
839 debug("DDR:err_disable=0x%08x\n", ddr->err_disable);
840 debug("DDR:err_sbe=0x%08x\n", ddr->err_sbe);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500841#endif
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500842 debug(" DDRC ECC mode: %s\n", ddrc_ecc_enable ? "ON":"OFF");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500843
844#if defined(CONFIG_DDR_2T_TIMING)
845 /*
846 * Enable 2T timing by setting sdram_cfg[16].
847 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500848 sdram_cfg |= SDRAM_CFG_2T_EN;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500849#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500850 /* Enable controller, and GO! */
851 ddr->sdram_cfg = sdram_cfg;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500852 asm("sync;isync");
853 udelay(500);
854
855 debug("DDR:sdram_cfg=0x%08x\n", ddr->sdram_cfg);
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100856 return memsize; /*in MBytes*/
Eran Libertyf046ccd2005-07-28 10:08:46 -0500857}
Eran Libertyf046ccd2005-07-28 10:08:46 -0500858#endif /* CONFIG_SPD_EEPROM */
859
Peter Tyser9adda542009-06-30 17:15:50 -0500860#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500861/*
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100862 * Use timebase counter, get_timer() is not availabe
863 * at this point of initialization yet.
864 */
865static __inline__ unsigned long get_tbms (void)
866{
867 unsigned long tbl;
868 unsigned long tbu1, tbu2;
869 unsigned long ms;
870 unsigned long long tmp;
871
872 ulong tbclk = get_tbclk();
873
874 /* get the timebase ticks */
875 do {
876 asm volatile ("mftbu %0":"=r" (tbu1):);
877 asm volatile ("mftb %0":"=r" (tbl):);
878 asm volatile ("mftbu %0":"=r" (tbu2):);
879 } while (tbu1 != tbu2);
880
881 /* convert ticks to ms */
882 tmp = (unsigned long long)(tbu1);
883 tmp = (tmp << 32);
884 tmp += (unsigned long long)(tbl);
885 ms = tmp/(tbclk/1000);
886
887 return ms;
888}
889
890/*
Eran Libertyf046ccd2005-07-28 10:08:46 -0500891 * Initialize all of memory for ECC, then enable errors.
892 */
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100893void ddr_enable_ecc(unsigned int dram_size)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500894{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200895 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500896 volatile ddr83xx_t *ddr= &immap->ddr;
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100897 unsigned long t_start, t_end;
Dave Liu90f30a72006-11-02 18:05:50 -0600898 register u64 *p;
899 register uint size;
900 unsigned int pattern[2];
Peter Tysere94e4602009-06-30 17:15:51 -0500901
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100902 icache_enable();
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100903 t_start = get_tbms();
Dave Liu90f30a72006-11-02 18:05:50 -0600904 pattern[0] = 0xdeadbeef;
905 pattern[1] = 0xdeadbeef;
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100906
Peter Tysere94e4602009-06-30 17:15:51 -0500907#if defined(CONFIG_DDR_ECC_INIT_VIA_DMA)
908 dma_meminit(pattern[0], dram_size);
909#else
Dave Liu90f30a72006-11-02 18:05:50 -0600910 debug("ddr init: CPU FP write method\n");
911 size = dram_size;
912 for (p = 0; p < (u64*)(size); p++) {
913 ppcDWstore((u32*)p, pattern);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500914 }
Dave Liu90f30a72006-11-02 18:05:50 -0600915 __asm__ __volatile__ ("sync");
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500916#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500917
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100918 t_end = get_tbms();
919 icache_disable();
920
921 debug("\nREADY!!\n");
922 debug("ddr init duration: %ld ms\n", t_end - t_start);
923
924 /* Clear All ECC Errors */
925 if ((ddr->err_detect & ECC_ERROR_DETECT_MME) == ECC_ERROR_DETECT_MME)
926 ddr->err_detect |= ECC_ERROR_DETECT_MME;
927 if ((ddr->err_detect & ECC_ERROR_DETECT_MBE) == ECC_ERROR_DETECT_MBE)
928 ddr->err_detect |= ECC_ERROR_DETECT_MBE;
929 if ((ddr->err_detect & ECC_ERROR_DETECT_SBE) == ECC_ERROR_DETECT_SBE)
930 ddr->err_detect |= ECC_ERROR_DETECT_SBE;
931 if ((ddr->err_detect & ECC_ERROR_DETECT_MSE) == ECC_ERROR_DETECT_MSE)
932 ddr->err_detect |= ECC_ERROR_DETECT_MSE;
933
934 /* Disable ECC-Interrupts */
935 ddr->err_int_en &= ECC_ERR_INT_DISABLE;
936
937 /* Enable errors for ECC */
938 ddr->err_disable &= ECC_ERROR_ENABLE;
939
940 __asm__ __volatile__ ("sync");
941 __asm__ __volatile__ ("isync");
942}
Eran Libertyf046ccd2005-07-28 10:08:46 -0500943#endif /* CONFIG_DDR_ECC */