blob: 824396835a3532422a528dea10c4499cb3d44f8c [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>
32#include <i2c.h>
33#include <spd.h>
34#include <asm/mmu.h>
35#include <spd_sdram.h>
36
Kim Phillips81fd52c2008-03-28 10:18:53 -050037DECLARE_GLOBAL_DATA_PTR;
38
Kim Phillipsbbea46f2007-08-16 22:52:48 -050039void board_add_ram_info(int use_default)
40{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Kim Phillipsbbea46f2007-08-16 22:52:48 -050042 volatile ddr83xx_t *ddr = &immap->ddr;
Kim Phillips81fd52c2008-03-28 10:18:53 -050043 char buf[32];
Kim Phillipsbbea46f2007-08-16 22:52:48 -050044
45 printf(" (DDR%d", ((ddr->sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK)
46 >> SDRAM_CFG_SDRAM_TYPE_SHIFT) - 1);
47
48 if (ddr->sdram_cfg & SDRAM_CFG_32_BE)
49 puts(", 32-bit");
50 else
51 puts(", 64-bit");
52
53 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
Kim Phillips81fd52c2008-03-28 10:18:53 -050054 puts(", ECC on");
Kim Phillipsbbea46f2007-08-16 22:52:48 -050055 else
Kim Phillips81fd52c2008-03-28 10:18:53 -050056 puts(", ECC off");
57
58 printf(", %s MHz)", strmhz(buf, gd->mem_clk));
Kim Phillipsbbea46f2007-08-16 22:52:48 -050059
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060#if defined(CONFIG_SYS_LB_SDRAM) && defined(CONFIG_SYS_LBC_SDRAM_SIZE)
Kim Phillipsbbea46f2007-08-16 22:52:48 -050061 puts("\nSDRAM: ");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020062 print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, " (local bus)");
Kim Phillipsbbea46f2007-08-16 22:52:48 -050063#endif
64}
65
Eran Libertyf046ccd2005-07-28 10:08:46 -050066#ifdef CONFIG_SPD_EEPROM
67
Dave Liuf6eda7f2006-10-25 14:41:21 -050068#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRC)
Eran Libertyf046ccd2005-07-28 10:08:46 -050069extern void dma_init(void);
70extern uint dma_check(void);
Peter Tyser7892f612009-06-30 17:15:45 -050071extern int dmacpy(phys_addr_t dest, phys_addr_t src, phys_size_t n);
Eran Libertyf046ccd2005-07-28 10:08:46 -050072#endif
73
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074#ifndef CONFIG_SYS_READ_SPD
75#define CONFIG_SYS_READ_SPD i2c_read
Eran Libertyf046ccd2005-07-28 10:08:46 -050076#endif
77
Eran Libertyf046ccd2005-07-28 10:08:46 -050078/*
79 * Convert picoseconds into clock cycles (rounding up if needed).
80 */
Eran Libertyf046ccd2005-07-28 10:08:46 -050081int
82picos_to_clk(int picos)
83{
Kim Phillips35cf1552008-03-28 10:18:40 -050084 unsigned int mem_bus_clk;
Eran Libertyf046ccd2005-07-28 10:08:46 -050085 int clks;
86
Kim Phillips35cf1552008-03-28 10:18:40 -050087 mem_bus_clk = gd->mem_clk >> 1;
88 clks = picos / (1000000000 / (mem_bus_clk / 1000));
89 if (picos % (1000000000 / (mem_bus_clk / 1000)) != 0)
Dave Liuf6eda7f2006-10-25 14:41:21 -050090 clks++;
Eran Libertyf046ccd2005-07-28 10:08:46 -050091
92 return clks;
93}
94
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +010095unsigned int banksize(unsigned char row_dens)
Eran Libertyf046ccd2005-07-28 10:08:46 -050096{
97 return ((row_dens >> 2) | ((row_dens & 3) << 6)) << 24;
98}
99
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100100int read_spd(uint addr)
101{
102 return ((int) addr);
103}
104
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100105#undef SPD_DEBUG
106#ifdef SPD_DEBUG
107static void spd_debug(spd_eeprom_t *spd)
108{
109 printf ("\nDIMM type: %-18.18s\n", spd->mpart);
110 printf ("SPD size: %d\n", spd->info_size);
111 printf ("EEPROM size: %d\n", 1 << spd->chip_size);
112 printf ("Memory type: %d\n", spd->mem_type);
113 printf ("Row addr: %d\n", spd->nrow_addr);
114 printf ("Column addr: %d\n", spd->ncol_addr);
115 printf ("# of rows: %d\n", spd->nrows);
116 printf ("Row density: %d\n", spd->row_dens);
117 printf ("# of banks: %d\n", spd->nbanks);
118 printf ("Data width: %d\n",
119 256 * spd->dataw_msb + spd->dataw_lsb);
120 printf ("Chip width: %d\n", spd->primw);
121 printf ("Refresh rate: %02X\n", spd->refresh);
122 printf ("CAS latencies: %02X\n", spd->cas_lat);
123 printf ("Write latencies: %02X\n", spd->write_lat);
124 printf ("tRP: %d\n", spd->trp);
125 printf ("tRCD: %d\n", spd->trcd);
126 printf ("\n");
127}
128#endif /* SPD_DEBUG */
129
130long int spd_sdram()
Eran Libertyf046ccd2005-07-28 10:08:46 -0500131{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200132 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500133 volatile ddr83xx_t *ddr = &immap->ddr;
134 volatile law83xx_t *ecm = &immap->sysconf.ddrlaw[0];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500135 spd_eeprom_t spd;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800136 unsigned int n_ranks;
137 unsigned int odt_rd_cfg, odt_wr_cfg;
138 unsigned char twr_clk, twtr_clk;
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500139 unsigned int sdram_type;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500140 unsigned int memsize;
141 unsigned int law_size;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500142 unsigned char caslat, caslat_ctrl;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800143 unsigned int trfc, trfc_clk, trfc_low, trfc_high;
144 unsigned int trcd_clk, trtp_clk;
145 unsigned char cke_min_clk;
146 unsigned char add_lat, wr_lat;
147 unsigned char wr_data_delay;
148 unsigned char four_act;
149 unsigned char cpo;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500150 unsigned char burstlen;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800151 unsigned char odt_cfg, mode_odt_enable;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500152 unsigned int max_bus_clk;
153 unsigned int max_data_rate, effective_data_rate;
154 unsigned int ddrc_clk;
155 unsigned int refresh_clk;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800156 unsigned int sdram_cfg;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500157 unsigned int ddrc_ecc_enable;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800158 unsigned int pvr = get_pvr();
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500159
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100160 /* Read SPD parameters with I2C */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161 CONFIG_SYS_READ_SPD(SPD_EEPROM_ADDRESS, 0, 1, (uchar *) & spd, sizeof (spd));
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100162#ifdef SPD_DEBUG
163 spd_debug(&spd);
164#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500165 /* Check the memory type */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800166 if (spd.mem_type != SPD_MEMTYPE_DDR && spd.mem_type != SPD_MEMTYPE_DDR2) {
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500167 debug("DDR: Module mem type is %02X\n", spd.mem_type);
Dave Liuf6eda7f2006-10-25 14:41:21 -0500168 return 0;
169 }
170
171 /* Check the number of physical bank */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800172 if (spd.mem_type == SPD_MEMTYPE_DDR) {
173 n_ranks = spd.nrows;
174 } else {
175 n_ranks = (spd.nrows & 0x7) + 1;
176 }
177
178 if (n_ranks > 2) {
179 printf("DDR: The number of physical bank is %02X\n", n_ranks);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500180 return 0;
181 }
182
Dave Liuf6eda7f2006-10-25 14:41:21 -0500183 /* Check if the number of row of the module is in the range of DDRC */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800184 if (spd.nrow_addr < 12 || spd.nrow_addr > 15) {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500185 printf("DDR: Row number is out of range of DDRC, row=%02X\n",
186 spd.nrow_addr);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500187 return 0;
188 }
189
Dave Liuf6eda7f2006-10-25 14:41:21 -0500190 /* Check if the number of col of the module is in the range of DDRC */
191 if (spd.ncol_addr < 8 || spd.ncol_addr > 11) {
192 printf("DDR: Col number is out of range of DDRC, col=%02X\n",
193 spd.ncol_addr);
194 return 0;
195 }
Xie Xiaobod61853c2007-02-14 18:27:17 +0800196
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200197#ifdef CONFIG_SYS_DDRCDR_VALUE
Xie Xiaobod61853c2007-02-14 18:27:17 +0800198 /*
199 * Adjust DDR II IO voltage biasing. It just makes it work.
200 */
201 if(spd.mem_type == SPD_MEMTYPE_DDR2) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200202 immap->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800203 }
Dave Liu19580e62007-09-18 12:37:57 +0800204 udelay(50000);
Xie Xiaobod61853c2007-02-14 18:27:17 +0800205#endif
206
207 /*
208 * ODT configuration recommendation from DDR Controller Chapter.
209 */
210 odt_rd_cfg = 0; /* Never assert ODT */
211 odt_wr_cfg = 0; /* Never assert ODT */
212 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
213 odt_wr_cfg = 1; /* Assert ODT on writes to CSn */
214 }
215
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100216 /* Setup DDR chip select register */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200217#ifdef CONFIG_SYS_83XX_DDR_USES_CS0
Dave Liu5f820432006-11-03 19:33:44 -0600218 ddr->csbnds[0].csbnds = (banksize(spd.row_dens) >> 24) - 1;
219 ddr->cs_config[0] = ( 1 << 31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800220 | (odt_rd_cfg << 20)
221 | (odt_wr_cfg << 16)
Jerry Van Baren394d30d2009-03-13 11:40:10 -0400222 | ((spd.nbanks == 8 ? 1 : 0) << 14)
223 | ((spd.nrow_addr - 12) << 8)
Dave Liu5f820432006-11-03 19:33:44 -0600224 | (spd.ncol_addr - 8) );
225 debug("\n");
226 debug("cs0_bnds = 0x%08x\n",ddr->csbnds[0].csbnds);
227 debug("cs0_config = 0x%08x\n",ddr->cs_config[0]);
228
Xie Xiaobod61853c2007-02-14 18:27:17 +0800229 if (n_ranks == 2) {
Dave Liu5f820432006-11-03 19:33:44 -0600230 ddr->csbnds[1].csbnds = ( (banksize(spd.row_dens) >> 8)
231 | ((banksize(spd.row_dens) >> 23) - 1) );
232 ddr->cs_config[1] = ( 1<<31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800233 | (odt_rd_cfg << 20)
234 | (odt_wr_cfg << 16)
Jerry Van Baren394d30d2009-03-13 11:40:10 -0400235 | ((spd.nbanks == 8 ? 1 : 0) << 14)
236 | ((spd.nrow_addr - 12) << 8)
237 | (spd.ncol_addr - 8) );
Dave Liu5f820432006-11-03 19:33:44 -0600238 debug("cs1_bnds = 0x%08x\n",ddr->csbnds[1].csbnds);
239 debug("cs1_config = 0x%08x\n",ddr->cs_config[1]);
240 }
241
242#else
Eran Libertyf046ccd2005-07-28 10:08:46 -0500243 ddr->csbnds[2].csbnds = (banksize(spd.row_dens) >> 24) - 1;
244 ddr->cs_config[2] = ( 1 << 31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800245 | (odt_rd_cfg << 20)
246 | (odt_wr_cfg << 16)
Jerry Van Baren394d30d2009-03-13 11:40:10 -0400247 | ((spd.nbanks == 8 ? 1 : 0) << 14)
248 | ((spd.nrow_addr - 12) << 8)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500249 | (spd.ncol_addr - 8) );
250 debug("\n");
251 debug("cs2_bnds = 0x%08x\n",ddr->csbnds[2].csbnds);
252 debug("cs2_config = 0x%08x\n",ddr->cs_config[2]);
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500253
Xie Xiaobod61853c2007-02-14 18:27:17 +0800254 if (n_ranks == 2) {
Eran Libertyf046ccd2005-07-28 10:08:46 -0500255 ddr->csbnds[3].csbnds = ( (banksize(spd.row_dens) >> 8)
256 | ((banksize(spd.row_dens) >> 23) - 1) );
257 ddr->cs_config[3] = ( 1<<31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800258 | (odt_rd_cfg << 20)
259 | (odt_wr_cfg << 16)
Jerry Van Baren394d30d2009-03-13 11:40:10 -0400260 | ((spd.nbanks == 8 ? 1 : 0) << 14)
261 | ((spd.nrow_addr - 12) << 8)
262 | (spd.ncol_addr - 8) );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500263 debug("cs3_bnds = 0x%08x\n",ddr->csbnds[3].csbnds);
264 debug("cs3_config = 0x%08x\n",ddr->cs_config[3]);
265 }
Timur Tabi2ad6b512006-10-31 18:44:42 -0600266#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500267
Eran Libertyf046ccd2005-07-28 10:08:46 -0500268 /*
269 * Figure out memory size in Megabytes.
270 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800271 memsize = n_ranks * banksize(spd.row_dens) / 0x100000;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500272
273 /*
274 * First supported LAW size is 16M, at LAWAR_SIZE_16M == 23.
275 */
276 law_size = 19 + __ilog2(memsize);
277
278 /*
279 * Set up LAWBAR for all of DDR.
280 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200281 ecm->bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500282 ecm->ar = (LAWAR_EN | LAWAR_TRGT_IF_DDR | (LAWAR_SIZE & law_size));
283 debug("DDR:bar=0x%08x\n", ecm->bar);
284 debug("DDR:ar=0x%08x\n", ecm->ar);
285
286 /*
Dave Liuf6eda7f2006-10-25 14:41:21 -0500287 * Find the largest CAS by locating the highest 1 bit
288 * in the spd.cas_lat field. Translate it to a DDR
289 * controller field value:
290 *
Xie Xiaobod61853c2007-02-14 18:27:17 +0800291 * CAS Lat DDR I DDR II Ctrl
292 * Clocks SPD Bit SPD Bit Value
293 * ------- ------- ------- -----
294 * 1.0 0 0001
295 * 1.5 1 0010
296 * 2.0 2 2 0011
297 * 2.5 3 0100
298 * 3.0 4 3 0101
299 * 3.5 5 0110
300 * 4.0 6 4 0111
301 * 4.5 1000
302 * 5.0 5 1001
Eran Libertyf046ccd2005-07-28 10:08:46 -0500303 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500304 caslat = __ilog2(spd.cas_lat);
Xie Xiaobod61853c2007-02-14 18:27:17 +0800305 if ((spd.mem_type == SPD_MEMTYPE_DDR)
306 && (caslat > 6)) {
307 printf("DDR I: Invalid SPD CAS Latency: 0x%x.\n", spd.cas_lat);
308 return 0;
309 } else if (spd.mem_type == SPD_MEMTYPE_DDR2
310 && (caslat < 2 || caslat > 5)) {
311 printf("DDR II: Invalid SPD CAS Latency: 0x%x.\n",
312 spd.cas_lat);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500313 return 0;
314 }
Xie Xiaobod61853c2007-02-14 18:27:17 +0800315 debug("DDR: caslat SPD bit is %d\n", caslat);
316
Dave Liuf6eda7f2006-10-25 14:41:21 -0500317 max_bus_clk = 1000 *10 / (((spd.clk_cycle & 0xF0) >> 4) * 10
318 + (spd.clk_cycle & 0x0f));
319 max_data_rate = max_bus_clk * 2;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500320
Wolfgang Denk8ed44d92008-10-19 02:35:50 +0200321 debug("DDR:Module maximum data rate is: %d MHz\n", max_data_rate);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500322
Kim Phillips35cf1552008-03-28 10:18:40 -0500323 ddrc_clk = gd->mem_clk / 1000000;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800324 effective_data_rate = 0;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500325
Dave Liu5b005552009-02-25 12:31:32 +0800326 if (max_data_rate >= 460) { /* it is DDR2-800, 667, 533 */
327 if (spd.cas_lat & 0x08)
328 caslat = 3;
329 else
330 caslat = 4;
331 if (ddrc_clk <= 460 && ddrc_clk > 350)
332 effective_data_rate = 400;
333 else if (ddrc_clk <=350 && ddrc_clk > 280)
334 effective_data_rate = 333;
335 else if (ddrc_clk <= 280 && ddrc_clk > 230)
336 effective_data_rate = 266;
337 else
338 effective_data_rate = 200;
339 } else if (max_data_rate >= 390 && max_data_rate < 460) { /* it is DDR 400 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800340 if (ddrc_clk <= 460 && ddrc_clk > 350) {
341 /* DDR controller clk at 350~460 */
Dave Liu5f820432006-11-03 19:33:44 -0600342 effective_data_rate = 400; /* 5ns */
343 caslat = caslat;
344 } else if (ddrc_clk <= 350 && ddrc_clk > 280) {
345 /* DDR controller clk at 280~350 */
346 effective_data_rate = 333; /* 6ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600347 if (spd.clk_cycle2 == 0x60)
Dave Liu5f820432006-11-03 19:33:44 -0600348 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600349 else
Dave Liu5f820432006-11-03 19:33:44 -0600350 caslat = caslat;
Dave Liu5f820432006-11-03 19:33:44 -0600351 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
352 /* DDR controller clk at 230~280 */
353 effective_data_rate = 266; /* 7.5ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600354 if (spd.clk_cycle3 == 0x75)
Dave Liu5f820432006-11-03 19:33:44 -0600355 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800356 else if (spd.clk_cycle2 == 0x75)
Dave Liu5f820432006-11-03 19:33:44 -0600357 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600358 else
Dave Liu5f820432006-11-03 19:33:44 -0600359 caslat = caslat;
Dave Liu5f820432006-11-03 19:33:44 -0600360 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
361 /* DDR controller clk at 90~230 */
362 effective_data_rate = 200; /* 10ns */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800363 if (spd.clk_cycle3 == 0xa0)
Dave Liu5f820432006-11-03 19:33:44 -0600364 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800365 else if (spd.clk_cycle2 == 0xa0)
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 }
Dave Liuf6eda7f2006-10-25 14:41:21 -0500370 } else if (max_data_rate >= 323) { /* it is DDR 333 */
371 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liu5f820432006-11-03 19:33:44 -0600372 /* DDR controller clk at 280~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500373 effective_data_rate = 333; /* 6ns */
374 caslat = caslat;
375 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600376 /* DDR controller clk at 230~280 */
377 effective_data_rate = 266; /* 7.5ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600378 if (spd.clk_cycle2 == 0x75)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500379 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600380 else
Dave Liu5f820432006-11-03 19:33:44 -0600381 caslat = caslat;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500382 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600383 /* DDR controller clk at 90~230 */
384 effective_data_rate = 200; /* 10ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600385 if (spd.clk_cycle3 == 0xa0)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500386 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800387 else if (spd.clk_cycle2 == 0xa0)
Dave Liu5f820432006-11-03 19:33:44 -0600388 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600389 else
Dave Liu5f820432006-11-03 19:33:44 -0600390 caslat = caslat;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500391 }
392 } else if (max_data_rate >= 256) { /* it is DDR 266 */
393 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liu5f820432006-11-03 19:33:44 -0600394 /* DDR controller clk at 280~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500395 printf("DDR: DDR controller freq is more than "
396 "max data rate of the module\n");
397 return 0;
398 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600399 /* DDR controller clk at 230~280 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500400 effective_data_rate = 266; /* 7.5ns */
401 caslat = caslat;
402 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600403 /* DDR controller clk at 90~230 */
404 effective_data_rate = 200; /* 10ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600405 if (spd.clk_cycle2 == 0xa0)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500406 caslat = caslat - 1;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500407 }
408 } else if (max_data_rate >= 190) { /* it is DDR 200 */
409 if (ddrc_clk <= 350 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600410 /* DDR controller clk at 230~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500411 printf("DDR: DDR controller freq is more than "
412 "max data rate of the module\n");
413 return 0;
414 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600415 /* DDR controller clk at 90~230 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500416 effective_data_rate = 200; /* 10ns */
417 caslat = caslat;
418 }
Eran Libertyf046ccd2005-07-28 10:08:46 -0500419 }
420
Wolfgang Denk8ed44d92008-10-19 02:35:50 +0200421 debug("DDR:Effective data rate is: %dMHz\n", effective_data_rate);
Dave Liu5f820432006-11-03 19:33:44 -0600422 debug("DDR:The MSB 1 of CAS Latency is: %d\n", caslat);
Timur Tabibed85ca2006-10-31 18:13:36 -0600423
Dave Liu5f820432006-11-03 19:33:44 -0600424 /*
425 * Errata DDR6 work around: input enable 2 cycles earlier.
426 * including MPC834x Rev1.0/1.1 and MPC8360 Rev1.1/1.2.
427 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800428 if(PVR_MAJ(pvr) <= 1 && spd.mem_type == SPD_MEMTYPE_DDR){
429 if (caslat == 2)
430 ddr->debug_reg = 0x201c0000; /* CL=2 */
431 else if (caslat == 3)
432 ddr->debug_reg = 0x202c0000; /* CL=2.5 */
433 else if (caslat == 4)
434 ddr->debug_reg = 0x202c0000; /* CL=3.0 */
Timur Tabie857a5b2006-11-28 12:09:35 -0600435
Xie Xiaobod61853c2007-02-14 18:27:17 +0800436 __asm__ __volatile__ ("sync");
Timur Tabibed85ca2006-10-31 18:13:36 -0600437
Xie Xiaobod61853c2007-02-14 18:27:17 +0800438 debug("Errata DDR6 (debug_reg=0x%08x)\n", ddr->debug_reg);
439 }
Timur Tabibed85ca2006-10-31 18:13:36 -0600440
Eran Libertyf046ccd2005-07-28 10:08:46 -0500441 /*
Xie Xiaobod61853c2007-02-14 18:27:17 +0800442 * Convert caslat clocks to DDR controller value.
443 * Force caslat_ctrl to be DDR Controller field-sized.
Eran Libertyf046ccd2005-07-28 10:08:46 -0500444 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800445 if (spd.mem_type == SPD_MEMTYPE_DDR) {
446 caslat_ctrl = (caslat + 1) & 0x07;
447 } else {
448 caslat_ctrl = (2 * caslat - 1) & 0x0f;
449 }
450
451 debug("DDR: effective data rate is %d MHz\n", effective_data_rate);
452 debug("DDR: caslat SPD bit is %d, controller field is 0x%x\n",
453 caslat, caslat_ctrl);
454
455 /*
456 * Timing Config 0.
457 * Avoid writing for DDR I.
458 */
459 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
460 unsigned char taxpd_clk = 8; /* By the book. */
461 unsigned char tmrd_clk = 2; /* By the book. */
462 unsigned char act_pd_exit = 2; /* Empirical? */
463 unsigned char pre_pd_exit = 6; /* Empirical? */
464
465 ddr->timing_cfg_0 = (0
466 | ((act_pd_exit & 0x7) << 20) /* ACT_PD_EXIT */
467 | ((pre_pd_exit & 0x7) << 16) /* PRE_PD_EXIT */
468 | ((taxpd_clk & 0xf) << 8) /* ODT_PD_EXIT */
469 | ((tmrd_clk & 0xf) << 0) /* MRS_CYC */
470 );
471 debug("DDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0);
472 }
473
474 /*
475 * For DDR I, WRREC(Twr) and WRTORD(Twtr) are not in SPD,
476 * use conservative value.
477 * For DDR II, they are bytes 36 and 37, in quarter nanos.
478 */
479
480 if (spd.mem_type == SPD_MEMTYPE_DDR) {
481 twr_clk = 3; /* Clocks */
482 twtr_clk = 1; /* Clocks */
483 } else {
484 twr_clk = picos_to_clk(spd.twr * 250);
485 twtr_clk = picos_to_clk(spd.twtr * 250);
Dave Liu5b005552009-02-25 12:31:32 +0800486 if (twtr_clk < 2)
487 twtr_clk = 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800488 }
489
490 /*
491 * Calculate Trfc, in picos.
492 * DDR I: Byte 42 straight up in ns.
493 * DDR II: Byte 40 and 42 swizzled some, in ns.
494 */
495 if (spd.mem_type == SPD_MEMTYPE_DDR) {
496 trfc = spd.trfc * 1000; /* up to ps */
497 } else {
498 unsigned int byte40_table_ps[8] = {
499 0,
500 250,
501 330,
502 500,
503 660,
504 750,
505 0,
506 0
507 };
508
509 trfc = (((spd.trctrfc_ext & 0x1) * 256) + spd.trfc) * 1000
510 + byte40_table_ps[(spd.trctrfc_ext >> 1) & 0x7];
511 }
512 trfc_clk = picos_to_clk(trfc);
513
514 /*
515 * Trcd, Byte 29, from quarter nanos to ps and clocks.
516 */
517 trcd_clk = picos_to_clk(spd.trcd * 250) & 0x7;
518
519 /*
520 * Convert trfc_clk to DDR controller fields. DDR I should
521 * fit in the REFREC field (16-19) of TIMING_CFG_1, but the
522 * 83xx controller has an extended REFREC field of three bits.
523 * The controller automatically adds 8 clocks to this value,
524 * so preadjust it down 8 first before splitting it up.
525 */
526 trfc_low = (trfc_clk - 8) & 0xf;
527 trfc_high = ((trfc_clk - 8) >> 4) & 0x3;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500528
529 ddr->timing_cfg_1 =
Xie Xiaobod61853c2007-02-14 18:27:17 +0800530 (((picos_to_clk(spd.trp * 250) & 0x07) << 28 ) | /* PRETOACT */
531 ((picos_to_clk(spd.tras * 1000) & 0x0f ) << 24 ) | /* ACTTOPRE */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200532 (trcd_clk << 20 ) | /* ACTTORW */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800533 (caslat_ctrl << 16 ) | /* CASLAT */
534 (trfc_low << 12 ) | /* REFEC */
535 ((twr_clk & 0x07) << 8) | /* WRRREC */
536 ((picos_to_clk(spd.trrd * 250) & 0x07) << 4) | /* ACTTOACT */
537 ((twtr_clk & 0x07) << 0) /* WRTORD */
538 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500539
Xie Xiaobod61853c2007-02-14 18:27:17 +0800540 /*
541 * Additive Latency
542 * For DDR I, 0.
543 * For DDR II, with ODT enabled, use "a value" less than ACTTORW,
544 * which comes from Trcd, and also note that:
545 * add_lat + caslat must be >= 4
546 */
547 add_lat = 0;
548 if (spd.mem_type == SPD_MEMTYPE_DDR2
549 && (odt_wr_cfg || odt_rd_cfg)
550 && (caslat < 4)) {
Dave Liu5b005552009-02-25 12:31:32 +0800551 add_lat = 4 - caslat;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800552 if ((add_lat + caslat) < 4) {
553 add_lat = 0;
554 }
555 }
556
557 /*
558 * Write Data Delay
559 * Historically 0x2 == 4/8 clock delay.
560 * Empirically, 0x3 == 6/8 clock delay is suggested for DDR I 266.
561 */
562 wr_data_delay = 2;
563
564 /*
565 * Write Latency
566 * Read to Precharge
567 * Minimum CKE Pulse Width.
568 * Four Activate Window
569 */
570 if (spd.mem_type == SPD_MEMTYPE_DDR) {
571 /*
572 * This is a lie. It should really be 1, but if it is
573 * set to 1, bits overlap into the old controller's
574 * otherwise unused ACSM field. If we leave it 0, then
575 * the HW will magically treat it as 1 for DDR 1. Oh Yea.
576 */
577 wr_lat = 0;
578
579 trtp_clk = 2; /* By the book. */
580 cke_min_clk = 1; /* By the book. */
581 four_act = 1; /* By the book. */
582
583 } else {
584 wr_lat = caslat - 1;
585
586 /* Convert SPD value from quarter nanos to picos. */
587 trtp_clk = picos_to_clk(spd.trtp * 250);
Dave Liu5b005552009-02-25 12:31:32 +0800588 if (trtp_clk < 2)
589 trtp_clk = 2;
590 trtp_clk += add_lat;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800591
592 cke_min_clk = 3; /* By the book. */
593 four_act = picos_to_clk(37500); /* By the book. 1k pages? */
594 }
595
596 /*
597 * Empirically set ~MCAS-to-preamble override for DDR 2.
598 * Your milage will vary.
599 */
600 cpo = 0;
601 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
Dave Liu061aad42008-01-10 23:09:33 +0800602 if (effective_data_rate == 266) {
603 cpo = 0x4; /* READ_LAT + 1/2 */
Dave Liu5b005552009-02-25 12:31:32 +0800604 } else if (effective_data_rate == 333) {
605 cpo = 0x6; /* READ_LAT + 1 */
606 } else if (effective_data_rate == 400) {
Dave Liu19580e62007-09-18 12:37:57 +0800607 cpo = 0x7; /* READ_LAT + 5/4 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800608 } else {
609 /* Automatic calibration */
610 cpo = 0x1f;
611 }
612 }
613
614 ddr->timing_cfg_2 = (0
615 | ((add_lat & 0x7) << 28) /* ADD_LAT */
616 | ((cpo & 0x1f) << 23) /* CPO */
617 | ((wr_lat & 0x7) << 19) /* WR_LAT */
618 | ((trtp_clk & 0x7) << 13) /* RD_TO_PRE */
619 | ((wr_data_delay & 0x7) << 10) /* WR_DATA_DELAY */
620 | ((cke_min_clk & 0x7) << 6) /* CKE_PLS */
621 | ((four_act & 0x1f) << 0) /* FOUR_ACT */
622 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500623
624 debug("DDR:timing_cfg_1=0x%08x\n", ddr->timing_cfg_1);
625 debug("DDR:timing_cfg_2=0x%08x\n", ddr->timing_cfg_2);
626
Dave Liuf6eda7f2006-10-25 14:41:21 -0500627 /* Check DIMM data bus width */
Lee Nipper3f9c5422008-04-10 09:35:06 -0500628 if (spd.dataw_lsb < 64) {
Dave Liu036575c2007-08-04 13:37:39 +0800629 if (spd.mem_type == SPD_MEMTYPE_DDR)
630 burstlen = 0x03; /* 32 bit data bus, burst len is 8 */
Dave Liu49bb5992007-08-10 15:48:59 +0800631 else
Dave Liu036575c2007-08-04 13:37:39 +0800632 burstlen = 0x02; /* 32 bit data bus, burst len is 4 */
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500633 debug("\n DDR DIMM: data bus width is 32 bit");
Dave Liu5f820432006-11-03 19:33:44 -0600634 } else {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500635 burstlen = 0x02; /* Others act as 64 bit bus, burst len is 4 */
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500636 debug("\n DDR DIMM: data bus width is 64 bit");
Dave Liuf6eda7f2006-10-25 14:41:21 -0500637 }
638
639 /* Is this an ECC DDR chip? */
Timur Tabie857a5b2006-11-28 12:09:35 -0600640 if (spd.config == 0x02)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500641 debug(" with ECC\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600642 else
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500643 debug(" without ECC\n");
Dave Liuf6eda7f2006-10-25 14:41:21 -0500644
645 /* Burst length is always 4 for 64 bit data bus, 8 for 32 bit data bus,
646 Burst type is sequential
Eran Libertyf046ccd2005-07-28 10:08:46 -0500647 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800648 if (spd.mem_type == SPD_MEMTYPE_DDR) {
649 switch (caslat) {
Dave Liu5f820432006-11-03 19:33:44 -0600650 case 1:
651 ddr->sdram_mode = 0x50 | burstlen; /* CL=1.5 */
652 break;
653 case 2:
654 ddr->sdram_mode = 0x20 | burstlen; /* CL=2.0 */
655 break;
656 case 3:
657 ddr->sdram_mode = 0x60 | burstlen; /* CL=2.5 */
658 break;
659 case 4:
660 ddr->sdram_mode = 0x30 | burstlen; /* CL=3.0 */
661 break;
662 default:
663 printf("DDR:only CL 1.5, 2.0, 2.5, 3.0 is supported\n");
664 return 0;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800665 }
666 } else {
667 mode_odt_enable = 0x0; /* Default disabled */
668 if (odt_wr_cfg || odt_rd_cfg) {
669 /*
670 * Bits 6 and 2 in Extended MRS(1)
671 * Bit 2 == 0x04 == 75 Ohm, with 2 DIMM modules.
672 * Bit 6 == 0x40 == 150 Ohm, with 1 DIMM module.
673 */
674 mode_odt_enable = 0x40; /* 150 Ohm */
675 }
676
677 ddr->sdram_mode =
678 (0
679 | (1 << (16 + 10)) /* DQS Differential disable */
680 | (add_lat << (16 + 3)) /* Additive Latency in EMRS1 */
681 | (mode_odt_enable << 16) /* ODT Enable in EMRS1 */
Xie Xiaobo6fbf2612007-03-09 19:08:25 +0800682 | ((twr_clk - 1) << 9) /* Write Recovery Autopre */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800683 | (caslat << 4) /* caslat */
684 | (burstlen << 0) /* Burst length */
685 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500686 }
687 debug("DDR:sdram_mode=0x%08x\n", ddr->sdram_mode);
688
Xie Xiaobod61853c2007-02-14 18:27:17 +0800689 /*
690 * Clear EMRS2 and EMRS3.
691 */
692 ddr->sdram_mode2 = 0;
693 debug("DDR: sdram_mode2 = 0x%08x\n", ddr->sdram_mode2);
694
Dave Liu5f820432006-11-03 19:33:44 -0600695 switch (spd.refresh) {
696 case 0x00:
697 case 0x80:
698 refresh_clk = picos_to_clk(15625000);
699 break;
700 case 0x01:
701 case 0x81:
702 refresh_clk = picos_to_clk(3900000);
703 break;
704 case 0x02:
705 case 0x82:
706 refresh_clk = picos_to_clk(7800000);
707 break;
708 case 0x03:
709 case 0x83:
710 refresh_clk = picos_to_clk(31300000);
711 break;
712 case 0x04:
713 case 0x84:
714 refresh_clk = picos_to_clk(62500000);
715 break;
716 case 0x05:
717 case 0x85:
718 refresh_clk = picos_to_clk(125000000);
719 break;
720 default:
721 refresh_clk = 0x512;
722 break;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500723 }
724
725 /*
726 * Set BSTOPRE to 0x100 for page mode
727 * If auto-charge is used, set BSTOPRE = 0
728 */
Dave Liu5f820432006-11-03 19:33:44 -0600729 ddr->sdram_interval = ((refresh_clk & 0x3fff) << 16) | 0x100;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500730 debug("DDR:sdram_interval=0x%08x\n", ddr->sdram_interval);
731
Xie Xiaobod61853c2007-02-14 18:27:17 +0800732 /*
733 * SDRAM Cfg 2
734 */
735 odt_cfg = 0;
Dave Liu19580e62007-09-18 12:37:57 +0800736#ifndef CONFIG_NEVER_ASSERT_ODT_TO_CPU
Xie Xiaobod61853c2007-02-14 18:27:17 +0800737 if (odt_rd_cfg | odt_wr_cfg) {
738 odt_cfg = 0x2; /* ODT to IOs during reads */
739 }
Dave Liu19580e62007-09-18 12:37:57 +0800740#endif
Xie Xiaobod61853c2007-02-14 18:27:17 +0800741 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
742 ddr->sdram_cfg2 = (0
743 | (0 << 26) /* True DQS */
744 | (odt_cfg << 21) /* ODT only read */
745 | (1 << 12) /* 1 refresh at a time */
746 );
747
748 debug("DDR: sdram_cfg2 = 0x%08x\n", ddr->sdram_cfg2);
749 }
750
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200751#ifdef CONFIG_SYS_DDR_SDRAM_CLK_CNTL /* Optional platform specific value */
752 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Paul Gortmaker91e25762007-01-16 11:38:14 -0500753#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500754 debug("DDR:sdram_clk_cntl=0x%08x\n", ddr->sdram_clk_cntl);
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100755
Eran Libertyf046ccd2005-07-28 10:08:46 -0500756 asm("sync;isync");
757
Dave Liuf6eda7f2006-10-25 14:41:21 -0500758 udelay(600);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500759
760 /*
Dave Liu5f820432006-11-03 19:33:44 -0600761 * Figure out the settings for the sdram_cfg register. Build up
762 * the value in 'sdram_cfg' before writing since the write into
Eran Libertyf046ccd2005-07-28 10:08:46 -0500763 * the register will actually enable the memory controller, and all
764 * settings must be done before enabling.
765 *
766 * sdram_cfg[0] = 1 (ddr sdram logic enable)
767 * sdram_cfg[1] = 1 (self-refresh-enable)
Xie Xiaobod61853c2007-02-14 18:27:17 +0800768 * sdram_cfg[5:7] = (SDRAM type = DDR SDRAM)
769 * 010 DDR 1 SDRAM
770 * 011 DDR 2 SDRAM
Dave Liuf6eda7f2006-10-25 14:41:21 -0500771 * sdram_cfg[12] = 0 (32_BE =0 , 64 bit bus mode)
772 * sdram_cfg[13] = 0 (8_BE =0, 4-beat bursts)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500773 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800774 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500775 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR1;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800776 else
Kim Phillips4cc1cd52007-08-17 09:30:00 -0500777 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800778
779 sdram_cfg = (0
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500780 | SDRAM_CFG_MEM_EN /* DDR enable */
781 | SDRAM_CFG_SREN /* Self refresh */
782 | sdram_type /* SDRAM type */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800783 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500784
Dave Liuf6eda7f2006-10-25 14:41:21 -0500785 /* sdram_cfg[3] = RD_EN - registered DIMM enable */
Timur Tabie857a5b2006-11-28 12:09:35 -0600786 if (spd.mod_attr & 0x02)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500787 sdram_cfg |= SDRAM_CFG_RD_EN;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500788
Dave Liuf6eda7f2006-10-25 14:41:21 -0500789 /* The DIMM is 32bit width */
Lee Nipper3f9c5422008-04-10 09:35:06 -0500790 if (spd.dataw_lsb < 64) {
Dave Liu036575c2007-08-04 13:37:39 +0800791 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500792 sdram_cfg |= SDRAM_CFG_32_BE | SDRAM_CFG_8_BE;
Dave Liu036575c2007-08-04 13:37:39 +0800793 if (spd.mem_type == SPD_MEMTYPE_DDR2)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500794 sdram_cfg |= SDRAM_CFG_32_BE;
Dave Liu036575c2007-08-04 13:37:39 +0800795 }
Timur Tabie857a5b2006-11-28 12:09:35 -0600796
Dave Liuf6eda7f2006-10-25 14:41:21 -0500797 ddrc_ecc_enable = 0;
798
Eran Libertyf046ccd2005-07-28 10:08:46 -0500799#if defined(CONFIG_DDR_ECC)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500800 /* Enable ECC with sdram_cfg[2] */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500801 if (spd.config == 0x02) {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500802 sdram_cfg |= 0x20000000;
803 ddrc_ecc_enable = 1;
804 /* disable error detection */
805 ddr->err_disable = ~ECC_ERROR_ENABLE;
806 /* set single bit error threshold to maximum value,
807 * reset counter to zero */
808 ddr->err_sbe = (255 << ECC_ERROR_MAN_SBET_SHIFT) |
Dave Liu5f820432006-11-03 19:33:44 -0600809 (0 << ECC_ERROR_MAN_SBEC_SHIFT);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500810 }
Dave Liuf6eda7f2006-10-25 14:41:21 -0500811
812 debug("DDR:err_disable=0x%08x\n", ddr->err_disable);
813 debug("DDR:err_sbe=0x%08x\n", ddr->err_sbe);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500814#endif
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500815 debug(" DDRC ECC mode: %s\n", ddrc_ecc_enable ? "ON":"OFF");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500816
817#if defined(CONFIG_DDR_2T_TIMING)
818 /*
819 * Enable 2T timing by setting sdram_cfg[16].
820 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500821 sdram_cfg |= SDRAM_CFG_2T_EN;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500822#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500823 /* Enable controller, and GO! */
824 ddr->sdram_cfg = sdram_cfg;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500825 asm("sync;isync");
826 udelay(500);
827
828 debug("DDR:sdram_cfg=0x%08x\n", ddr->sdram_cfg);
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100829 return memsize; /*in MBytes*/
Eran Libertyf046ccd2005-07-28 10:08:46 -0500830}
Eran Libertyf046ccd2005-07-28 10:08:46 -0500831#endif /* CONFIG_SPD_EEPROM */
832
Peter Tyser9adda542009-06-30 17:15:50 -0500833#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500834/*
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100835 * Use timebase counter, get_timer() is not availabe
836 * at this point of initialization yet.
837 */
838static __inline__ unsigned long get_tbms (void)
839{
840 unsigned long tbl;
841 unsigned long tbu1, tbu2;
842 unsigned long ms;
843 unsigned long long tmp;
844
845 ulong tbclk = get_tbclk();
846
847 /* get the timebase ticks */
848 do {
849 asm volatile ("mftbu %0":"=r" (tbu1):);
850 asm volatile ("mftb %0":"=r" (tbl):);
851 asm volatile ("mftbu %0":"=r" (tbu2):);
852 } while (tbu1 != tbu2);
853
854 /* convert ticks to ms */
855 tmp = (unsigned long long)(tbu1);
856 tmp = (tmp << 32);
857 tmp += (unsigned long long)(tbl);
858 ms = tmp/(tbclk/1000);
859
860 return ms;
861}
862
863/*
Eran Libertyf046ccd2005-07-28 10:08:46 -0500864 * Initialize all of memory for ECC, then enable errors.
865 */
Wolfgang Denkcf48eb92006-04-16 10:51:58 +0200866/* #define CONFIG_DDR_ECC_INIT_VIA_DMA */
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100867void ddr_enable_ecc(unsigned int dram_size)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500868{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200869 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500870 volatile ddr83xx_t *ddr= &immap->ddr;
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100871 unsigned long t_start, t_end;
Dave Liu90f30a72006-11-02 18:05:50 -0600872 register u64 *p;
873 register uint size;
874 unsigned int pattern[2];
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100875#if defined(CONFIG_DDR_ECC_INIT_VIA_DMA)
876 uint i;
877#endif
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100878 icache_enable();
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100879 t_start = get_tbms();
Dave Liu90f30a72006-11-02 18:05:50 -0600880 pattern[0] = 0xdeadbeef;
881 pattern[1] = 0xdeadbeef;
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100882
883#if !defined(CONFIG_DDR_ECC_INIT_VIA_DMA)
Dave Liu90f30a72006-11-02 18:05:50 -0600884 debug("ddr init: CPU FP write method\n");
885 size = dram_size;
886 for (p = 0; p < (u64*)(size); p++) {
887 ppcDWstore((u32*)p, pattern);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500888 }
Dave Liu90f30a72006-11-02 18:05:50 -0600889 __asm__ __volatile__ ("sync");
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100890#else
Dave Liu90f30a72006-11-02 18:05:50 -0600891 debug("ddr init: DMA method\n");
892 size = 0x2000;
893 for (p = 0; p < (u64*)(size); p++) {
894 ppcDWstore((u32*)p, pattern);
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100895 }
Dave Liu90f30a72006-11-02 18:05:50 -0600896 __asm__ __volatile__ ("sync");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500897
Dave Liu90f30a72006-11-02 18:05:50 -0600898 /* Initialise DMA for direct transfer */
899 dma_init();
900 /* Start DMA to transfer */
Peter Tyser7892f612009-06-30 17:15:45 -0500901 dmacpy(0x2000, 0, 0x2000); /* 8K */
902 dmacpy(0x4000, 0, 0x4000); /* 16K */
903 dmacpy(0x8000, 0, 0x8000); /* 32K */
904 dmacpy(0x10000, 0, 0x10000); /* 64K */
905 dmacpy(0x20000, 0, 0x20000); /* 128K */
906 dmacpy(0x40000, 0, 0x40000); /* 256K */
907 dmacpy(0x80000, 0, 0x80000); /* 512K */
908 dmacpy(0x100000, 0, 0x100000); /* 1M */
909 dmacpy(0x200000, 0, 0x200000); /* 2M */
910 dmacpy(0x400000, 0, 0x400000); /* 4M */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500911
Peter Tyser7892f612009-06-30 17:15:45 -0500912 for (i = 1; i < dram_size / 0x800000; i++)
913 dmacpy(0x800000 * i, 0, 0x800000);
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500914#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500915
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100916 t_end = get_tbms();
917 icache_disable();
918
919 debug("\nREADY!!\n");
920 debug("ddr init duration: %ld ms\n", t_end - t_start);
921
922 /* Clear All ECC Errors */
923 if ((ddr->err_detect & ECC_ERROR_DETECT_MME) == ECC_ERROR_DETECT_MME)
924 ddr->err_detect |= ECC_ERROR_DETECT_MME;
925 if ((ddr->err_detect & ECC_ERROR_DETECT_MBE) == ECC_ERROR_DETECT_MBE)
926 ddr->err_detect |= ECC_ERROR_DETECT_MBE;
927 if ((ddr->err_detect & ECC_ERROR_DETECT_SBE) == ECC_ERROR_DETECT_SBE)
928 ddr->err_detect |= ECC_ERROR_DETECT_SBE;
929 if ((ddr->err_detect & ECC_ERROR_DETECT_MSE) == ECC_ERROR_DETECT_MSE)
930 ddr->err_detect |= ECC_ERROR_DETECT_MSE;
931
932 /* Disable ECC-Interrupts */
933 ddr->err_int_en &= ECC_ERR_INT_DISABLE;
934
935 /* Enable errors for ECC */
936 ddr->err_disable &= ECC_ERROR_ENABLE;
937
938 __asm__ __volatile__ ("sync");
939 __asm__ __volatile__ ("isync");
940}
Eran Libertyf046ccd2005-07-28 10:08:46 -0500941#endif /* CONFIG_DDR_ECC */