blob: 040836c42e09df55d7f1a36eb0ae36b742db164c [file] [log] [blame]
Eran Libertyf046ccd2005-07-28 10:08:46 -05001/*
Dave Liuf6eda7f2006-10-25 14:41:21 -05002 * (C) Copyright 2006 Freescale Semiconductor, Inc.
3 *
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 Phillipsbbea46f2007-08-16 22:52:48 -050037void board_add_ram_info(int use_default)
38{
39 volatile immap_t *immap = (immap_t *) CFG_IMMR;
40 volatile ddr83xx_t *ddr = &immap->ddr;
41
42 printf(" (DDR%d", ((ddr->sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK)
43 >> SDRAM_CFG_SDRAM_TYPE_SHIFT) - 1);
44
45 if (ddr->sdram_cfg & SDRAM_CFG_32_BE)
46 puts(", 32-bit");
47 else
48 puts(", 64-bit");
49
50 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
51 puts(", ECC on)");
52 else
53 puts(", ECC off)");
54
55#if defined(CFG_LB_SDRAM) && defined(CFG_LBC_SDRAM_SIZE)
56 puts("\nSDRAM: ");
57 print_size (CFG_LBC_SDRAM_SIZE * 1024 * 1024, " (local bus)");
58#endif
59}
60
Eran Libertyf046ccd2005-07-28 10:08:46 -050061#ifdef CONFIG_SPD_EEPROM
62
Timur Tabie857a5b2006-11-28 12:09:35 -060063DECLARE_GLOBAL_DATA_PTR;
64
Dave Liuf6eda7f2006-10-25 14:41:21 -050065#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRC)
Eran Libertyf046ccd2005-07-28 10:08:46 -050066extern void dma_init(void);
67extern uint dma_check(void);
68extern int dma_xfer(void *dest, uint count, void *src);
69#endif
70
Eran Libertyf046ccd2005-07-28 10:08:46 -050071#ifndef CFG_READ_SPD
72#define CFG_READ_SPD i2c_read
73#endif
74
Eran Libertyf046ccd2005-07-28 10:08:46 -050075/*
76 * Convert picoseconds into clock cycles (rounding up if needed).
77 */
Eran Libertyf046ccd2005-07-28 10:08:46 -050078int
79picos_to_clk(int picos)
80{
Dave Liuf6eda7f2006-10-25 14:41:21 -050081 unsigned int ddr_bus_clk;
Eran Libertyf046ccd2005-07-28 10:08:46 -050082 int clks;
83
Timur Tabie857a5b2006-11-28 12:09:35 -060084 ddr_bus_clk = gd->ddr_clk >> 1;
Xie Xiaobo6fbf2612007-03-09 19:08:25 +080085 clks = picos / (1000000000 / (ddr_bus_clk / 1000));
86 if (picos % (1000000000 / (ddr_bus_clk / 1000)) != 0)
Dave Liuf6eda7f2006-10-25 14:41:21 -050087 clks++;
Eran Libertyf046ccd2005-07-28 10:08:46 -050088
89 return clks;
90}
91
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +010092unsigned int banksize(unsigned char row_dens)
Eran Libertyf046ccd2005-07-28 10:08:46 -050093{
94 return ((row_dens >> 2) | ((row_dens & 3) << 6)) << 24;
95}
96
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +010097int read_spd(uint addr)
98{
99 return ((int) addr);
100}
101
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100102#undef SPD_DEBUG
103#ifdef SPD_DEBUG
104static void spd_debug(spd_eeprom_t *spd)
105{
106 printf ("\nDIMM type: %-18.18s\n", spd->mpart);
107 printf ("SPD size: %d\n", spd->info_size);
108 printf ("EEPROM size: %d\n", 1 << spd->chip_size);
109 printf ("Memory type: %d\n", spd->mem_type);
110 printf ("Row addr: %d\n", spd->nrow_addr);
111 printf ("Column addr: %d\n", spd->ncol_addr);
112 printf ("# of rows: %d\n", spd->nrows);
113 printf ("Row density: %d\n", spd->row_dens);
114 printf ("# of banks: %d\n", spd->nbanks);
115 printf ("Data width: %d\n",
116 256 * spd->dataw_msb + spd->dataw_lsb);
117 printf ("Chip width: %d\n", spd->primw);
118 printf ("Refresh rate: %02X\n", spd->refresh);
119 printf ("CAS latencies: %02X\n", spd->cas_lat);
120 printf ("Write latencies: %02X\n", spd->write_lat);
121 printf ("tRP: %d\n", spd->trp);
122 printf ("tRCD: %d\n", spd->trcd);
123 printf ("\n");
124}
125#endif /* SPD_DEBUG */
126
127long int spd_sdram()
Eran Libertyf046ccd2005-07-28 10:08:46 -0500128{
Timur Tabid239d742006-11-03 12:00:28 -0600129 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500130 volatile ddr83xx_t *ddr = &immap->ddr;
131 volatile law83xx_t *ecm = &immap->sysconf.ddrlaw[0];
Eran Libertyf046ccd2005-07-28 10:08:46 -0500132 spd_eeprom_t spd;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800133 unsigned int n_ranks;
134 unsigned int odt_rd_cfg, odt_wr_cfg;
135 unsigned char twr_clk, twtr_clk;
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500136 unsigned int sdram_type;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500137 unsigned int memsize;
138 unsigned int law_size;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500139 unsigned char caslat, caslat_ctrl;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800140 unsigned int trfc, trfc_clk, trfc_low, trfc_high;
141 unsigned int trcd_clk, trtp_clk;
142 unsigned char cke_min_clk;
143 unsigned char add_lat, wr_lat;
144 unsigned char wr_data_delay;
145 unsigned char four_act;
146 unsigned char cpo;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500147 unsigned char burstlen;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800148 unsigned char odt_cfg, mode_odt_enable;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500149 unsigned int max_bus_clk;
150 unsigned int max_data_rate, effective_data_rate;
151 unsigned int ddrc_clk;
152 unsigned int refresh_clk;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800153 unsigned int sdram_cfg;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500154 unsigned int ddrc_ecc_enable;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800155 unsigned int pvr = get_pvr();
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500156
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100157 /* Read SPD parameters with I2C */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500158 CFG_READ_SPD(SPD_EEPROM_ADDRESS, 0, 1, (uchar *) & spd, sizeof (spd));
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100159#ifdef SPD_DEBUG
160 spd_debug(&spd);
161#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500162 /* Check the memory type */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800163 if (spd.mem_type != SPD_MEMTYPE_DDR && spd.mem_type != SPD_MEMTYPE_DDR2) {
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500164 debug("DDR: Module mem type is %02X\n", spd.mem_type);
Dave Liuf6eda7f2006-10-25 14:41:21 -0500165 return 0;
166 }
167
168 /* Check the number of physical bank */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800169 if (spd.mem_type == SPD_MEMTYPE_DDR) {
170 n_ranks = spd.nrows;
171 } else {
172 n_ranks = (spd.nrows & 0x7) + 1;
173 }
174
175 if (n_ranks > 2) {
176 printf("DDR: The number of physical bank is %02X\n", n_ranks);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500177 return 0;
178 }
179
Dave Liuf6eda7f2006-10-25 14:41:21 -0500180 /* Check if the number of row of the module is in the range of DDRC */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800181 if (spd.nrow_addr < 12 || spd.nrow_addr > 15) {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500182 printf("DDR: Row number is out of range of DDRC, row=%02X\n",
183 spd.nrow_addr);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500184 return 0;
185 }
186
Dave Liuf6eda7f2006-10-25 14:41:21 -0500187 /* Check if the number of col of the module is in the range of DDRC */
188 if (spd.ncol_addr < 8 || spd.ncol_addr > 11) {
189 printf("DDR: Col number is out of range of DDRC, col=%02X\n",
190 spd.ncol_addr);
191 return 0;
192 }
Xie Xiaobod61853c2007-02-14 18:27:17 +0800193
194#ifdef CFG_DDRCDR_VALUE
195 /*
196 * Adjust DDR II IO voltage biasing. It just makes it work.
197 */
198 if(spd.mem_type == SPD_MEMTYPE_DDR2) {
199 immap->sysconf.ddrcdr = CFG_DDRCDR_VALUE;
200 }
201#endif
202
203 /*
204 * ODT configuration recommendation from DDR Controller Chapter.
205 */
206 odt_rd_cfg = 0; /* Never assert ODT */
207 odt_wr_cfg = 0; /* Never assert ODT */
208 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
209 odt_wr_cfg = 1; /* Assert ODT on writes to CSn */
210 }
211
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100212 /* Setup DDR chip select register */
Dave Liu5f820432006-11-03 19:33:44 -0600213#ifdef CFG_83XX_DDR_USES_CS0
214 ddr->csbnds[0].csbnds = (banksize(spd.row_dens) >> 24) - 1;
215 ddr->cs_config[0] = ( 1 << 31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800216 | (odt_rd_cfg << 20)
217 | (odt_wr_cfg << 16)
Dave Liu5f820432006-11-03 19:33:44 -0600218 | (spd.nrow_addr - 12) << 8
219 | (spd.ncol_addr - 8) );
220 debug("\n");
221 debug("cs0_bnds = 0x%08x\n",ddr->csbnds[0].csbnds);
222 debug("cs0_config = 0x%08x\n",ddr->cs_config[0]);
223
Xie Xiaobod61853c2007-02-14 18:27:17 +0800224 if (n_ranks == 2) {
Dave Liu5f820432006-11-03 19:33:44 -0600225 ddr->csbnds[1].csbnds = ( (banksize(spd.row_dens) >> 8)
226 | ((banksize(spd.row_dens) >> 23) - 1) );
227 ddr->cs_config[1] = ( 1<<31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800228 | (odt_rd_cfg << 20)
229 | (odt_wr_cfg << 16)
Dave Liu5f820432006-11-03 19:33:44 -0600230 | (spd.nrow_addr-12) << 8
231 | (spd.ncol_addr-8) );
232 debug("cs1_bnds = 0x%08x\n",ddr->csbnds[1].csbnds);
233 debug("cs1_config = 0x%08x\n",ddr->cs_config[1]);
234 }
235
236#else
Eran Libertyf046ccd2005-07-28 10:08:46 -0500237 ddr->csbnds[2].csbnds = (banksize(spd.row_dens) >> 24) - 1;
238 ddr->cs_config[2] = ( 1 << 31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800239 | (odt_rd_cfg << 20)
240 | (odt_wr_cfg << 16)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500241 | (spd.nrow_addr - 12) << 8
242 | (spd.ncol_addr - 8) );
243 debug("\n");
244 debug("cs2_bnds = 0x%08x\n",ddr->csbnds[2].csbnds);
245 debug("cs2_config = 0x%08x\n",ddr->cs_config[2]);
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500246
Xie Xiaobod61853c2007-02-14 18:27:17 +0800247 if (n_ranks == 2) {
Eran Libertyf046ccd2005-07-28 10:08:46 -0500248 ddr->csbnds[3].csbnds = ( (banksize(spd.row_dens) >> 8)
249 | ((banksize(spd.row_dens) >> 23) - 1) );
250 ddr->cs_config[3] = ( 1<<31
Xie Xiaobod61853c2007-02-14 18:27:17 +0800251 | (odt_rd_cfg << 20)
252 | (odt_wr_cfg << 16)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500253 | (spd.nrow_addr-12) << 8
254 | (spd.ncol_addr-8) );
255 debug("cs3_bnds = 0x%08x\n",ddr->csbnds[3].csbnds);
256 debug("cs3_config = 0x%08x\n",ddr->cs_config[3]);
257 }
Timur Tabi2ad6b512006-10-31 18:44:42 -0600258#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500259
Eran Libertyf046ccd2005-07-28 10:08:46 -0500260 /*
261 * Figure out memory size in Megabytes.
262 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800263 memsize = n_ranks * banksize(spd.row_dens) / 0x100000;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500264
265 /*
266 * First supported LAW size is 16M, at LAWAR_SIZE_16M == 23.
267 */
268 law_size = 19 + __ilog2(memsize);
269
270 /*
271 * Set up LAWBAR for all of DDR.
272 */
273 ecm->bar = ((CFG_DDR_SDRAM_BASE>>12) & 0xfffff);
274 ecm->ar = (LAWAR_EN | LAWAR_TRGT_IF_DDR | (LAWAR_SIZE & law_size));
275 debug("DDR:bar=0x%08x\n", ecm->bar);
276 debug("DDR:ar=0x%08x\n", ecm->ar);
277
278 /*
Dave Liuf6eda7f2006-10-25 14:41:21 -0500279 * Find the largest CAS by locating the highest 1 bit
280 * in the spd.cas_lat field. Translate it to a DDR
281 * controller field value:
282 *
Xie Xiaobod61853c2007-02-14 18:27:17 +0800283 * CAS Lat DDR I DDR II Ctrl
284 * Clocks SPD Bit SPD Bit Value
285 * ------- ------- ------- -----
286 * 1.0 0 0001
287 * 1.5 1 0010
288 * 2.0 2 2 0011
289 * 2.5 3 0100
290 * 3.0 4 3 0101
291 * 3.5 5 0110
292 * 4.0 6 4 0111
293 * 4.5 1000
294 * 5.0 5 1001
Eran Libertyf046ccd2005-07-28 10:08:46 -0500295 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500296 caslat = __ilog2(spd.cas_lat);
Xie Xiaobod61853c2007-02-14 18:27:17 +0800297 if ((spd.mem_type == SPD_MEMTYPE_DDR)
298 && (caslat > 6)) {
299 printf("DDR I: Invalid SPD CAS Latency: 0x%x.\n", spd.cas_lat);
300 return 0;
301 } else if (spd.mem_type == SPD_MEMTYPE_DDR2
302 && (caslat < 2 || caslat > 5)) {
303 printf("DDR II: Invalid SPD CAS Latency: 0x%x.\n",
304 spd.cas_lat);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500305 return 0;
306 }
Xie Xiaobod61853c2007-02-14 18:27:17 +0800307 debug("DDR: caslat SPD bit is %d\n", caslat);
308
Dave Liuf6eda7f2006-10-25 14:41:21 -0500309 max_bus_clk = 1000 *10 / (((spd.clk_cycle & 0xF0) >> 4) * 10
310 + (spd.clk_cycle & 0x0f));
311 max_data_rate = max_bus_clk * 2;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500312
Dave Liuf6eda7f2006-10-25 14:41:21 -0500313 debug("DDR:Module maximum data rate is: %dMhz\n", max_data_rate);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500314
Timur Tabie857a5b2006-11-28 12:09:35 -0600315 ddrc_clk = gd->ddr_clk / 1000000;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800316 effective_data_rate = 0;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500317
Xie Xiaobod61853c2007-02-14 18:27:17 +0800318 if (max_data_rate >= 390 && max_data_rate < 460) { /* it is DDR 400 */
319 if (ddrc_clk <= 460 && ddrc_clk > 350) {
320 /* DDR controller clk at 350~460 */
Dave Liu5f820432006-11-03 19:33:44 -0600321 effective_data_rate = 400; /* 5ns */
322 caslat = caslat;
323 } else if (ddrc_clk <= 350 && ddrc_clk > 280) {
324 /* DDR controller clk at 280~350 */
325 effective_data_rate = 333; /* 6ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600326 if (spd.clk_cycle2 == 0x60)
Dave Liu5f820432006-11-03 19:33:44 -0600327 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600328 else
Dave Liu5f820432006-11-03 19:33:44 -0600329 caslat = caslat;
Dave Liu5f820432006-11-03 19:33:44 -0600330 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
331 /* DDR controller clk at 230~280 */
332 effective_data_rate = 266; /* 7.5ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600333 if (spd.clk_cycle3 == 0x75)
Dave Liu5f820432006-11-03 19:33:44 -0600334 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800335 else if (spd.clk_cycle2 == 0x75)
Dave Liu5f820432006-11-03 19:33:44 -0600336 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600337 else
Dave Liu5f820432006-11-03 19:33:44 -0600338 caslat = caslat;
Dave Liu5f820432006-11-03 19:33:44 -0600339 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
340 /* DDR controller clk at 90~230 */
341 effective_data_rate = 200; /* 10ns */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800342 if (spd.clk_cycle3 == 0xa0)
Dave Liu5f820432006-11-03 19:33:44 -0600343 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800344 else if (spd.clk_cycle2 == 0xa0)
Dave Liu5f820432006-11-03 19:33:44 -0600345 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600346 else
Dave Liu5f820432006-11-03 19:33:44 -0600347 caslat = caslat;
Dave Liu5f820432006-11-03 19:33:44 -0600348 }
Dave Liuf6eda7f2006-10-25 14:41:21 -0500349 } else if (max_data_rate >= 323) { /* it is DDR 333 */
350 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liu5f820432006-11-03 19:33:44 -0600351 /* DDR controller clk at 280~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500352 effective_data_rate = 333; /* 6ns */
353 caslat = caslat;
354 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600355 /* DDR controller clk at 230~280 */
356 effective_data_rate = 266; /* 7.5ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600357 if (spd.clk_cycle2 == 0x75)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500358 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600359 else
Dave Liu5f820432006-11-03 19:33:44 -0600360 caslat = caslat;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500361 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600362 /* DDR controller clk at 90~230 */
363 effective_data_rate = 200; /* 10ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600364 if (spd.clk_cycle3 == 0xa0)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500365 caslat = caslat - 2;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800366 else if (spd.clk_cycle2 == 0xa0)
Dave Liu5f820432006-11-03 19:33:44 -0600367 caslat = caslat - 1;
Timur Tabie857a5b2006-11-28 12:09:35 -0600368 else
Dave Liu5f820432006-11-03 19:33:44 -0600369 caslat = caslat;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500370 }
371 } else if (max_data_rate >= 256) { /* it is DDR 266 */
372 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liu5f820432006-11-03 19:33:44 -0600373 /* DDR controller clk at 280~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500374 printf("DDR: DDR controller freq is more than "
375 "max data rate of the module\n");
376 return 0;
377 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600378 /* DDR controller clk at 230~280 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500379 effective_data_rate = 266; /* 7.5ns */
380 caslat = caslat;
381 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600382 /* DDR controller clk at 90~230 */
383 effective_data_rate = 200; /* 10ns */
Timur Tabie857a5b2006-11-28 12:09:35 -0600384 if (spd.clk_cycle2 == 0xa0)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500385 caslat = caslat - 1;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500386 }
387 } else if (max_data_rate >= 190) { /* it is DDR 200 */
388 if (ddrc_clk <= 350 && ddrc_clk > 230) {
Dave Liu5f820432006-11-03 19:33:44 -0600389 /* DDR controller clk at 230~350 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500390 printf("DDR: DDR controller freq is more than "
391 "max data rate of the module\n");
392 return 0;
393 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liu5f820432006-11-03 19:33:44 -0600394 /* DDR controller clk at 90~230 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500395 effective_data_rate = 200; /* 10ns */
396 caslat = caslat;
397 }
Eran Libertyf046ccd2005-07-28 10:08:46 -0500398 }
399
Dave Liu5f820432006-11-03 19:33:44 -0600400 debug("DDR:Effective data rate is: %dMhz\n", effective_data_rate);
401 debug("DDR:The MSB 1 of CAS Latency is: %d\n", caslat);
Timur Tabibed85ca2006-10-31 18:13:36 -0600402
Dave Liu5f820432006-11-03 19:33:44 -0600403 /*
404 * Errata DDR6 work around: input enable 2 cycles earlier.
405 * including MPC834x Rev1.0/1.1 and MPC8360 Rev1.1/1.2.
406 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800407 if(PVR_MAJ(pvr) <= 1 && spd.mem_type == SPD_MEMTYPE_DDR){
408 if (caslat == 2)
409 ddr->debug_reg = 0x201c0000; /* CL=2 */
410 else if (caslat == 3)
411 ddr->debug_reg = 0x202c0000; /* CL=2.5 */
412 else if (caslat == 4)
413 ddr->debug_reg = 0x202c0000; /* CL=3.0 */
Timur Tabie857a5b2006-11-28 12:09:35 -0600414
Xie Xiaobod61853c2007-02-14 18:27:17 +0800415 __asm__ __volatile__ ("sync");
Timur Tabibed85ca2006-10-31 18:13:36 -0600416
Xie Xiaobod61853c2007-02-14 18:27:17 +0800417 debug("Errata DDR6 (debug_reg=0x%08x)\n", ddr->debug_reg);
418 }
Timur Tabibed85ca2006-10-31 18:13:36 -0600419
Eran Libertyf046ccd2005-07-28 10:08:46 -0500420 /*
Xie Xiaobod61853c2007-02-14 18:27:17 +0800421 * Convert caslat clocks to DDR controller value.
422 * Force caslat_ctrl to be DDR Controller field-sized.
Eran Libertyf046ccd2005-07-28 10:08:46 -0500423 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800424 if (spd.mem_type == SPD_MEMTYPE_DDR) {
425 caslat_ctrl = (caslat + 1) & 0x07;
426 } else {
427 caslat_ctrl = (2 * caslat - 1) & 0x0f;
428 }
429
430 debug("DDR: effective data rate is %d MHz\n", effective_data_rate);
431 debug("DDR: caslat SPD bit is %d, controller field is 0x%x\n",
432 caslat, caslat_ctrl);
433
434 /*
435 * Timing Config 0.
436 * Avoid writing for DDR I.
437 */
438 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
439 unsigned char taxpd_clk = 8; /* By the book. */
440 unsigned char tmrd_clk = 2; /* By the book. */
441 unsigned char act_pd_exit = 2; /* Empirical? */
442 unsigned char pre_pd_exit = 6; /* Empirical? */
443
444 ddr->timing_cfg_0 = (0
445 | ((act_pd_exit & 0x7) << 20) /* ACT_PD_EXIT */
446 | ((pre_pd_exit & 0x7) << 16) /* PRE_PD_EXIT */
447 | ((taxpd_clk & 0xf) << 8) /* ODT_PD_EXIT */
448 | ((tmrd_clk & 0xf) << 0) /* MRS_CYC */
449 );
450 debug("DDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0);
451 }
452
453 /*
454 * For DDR I, WRREC(Twr) and WRTORD(Twtr) are not in SPD,
455 * use conservative value.
456 * For DDR II, they are bytes 36 and 37, in quarter nanos.
457 */
458
459 if (spd.mem_type == SPD_MEMTYPE_DDR) {
460 twr_clk = 3; /* Clocks */
461 twtr_clk = 1; /* Clocks */
462 } else {
463 twr_clk = picos_to_clk(spd.twr * 250);
464 twtr_clk = picos_to_clk(spd.twtr * 250);
465 }
466
467 /*
468 * Calculate Trfc, in picos.
469 * DDR I: Byte 42 straight up in ns.
470 * DDR II: Byte 40 and 42 swizzled some, in ns.
471 */
472 if (spd.mem_type == SPD_MEMTYPE_DDR) {
473 trfc = spd.trfc * 1000; /* up to ps */
474 } else {
475 unsigned int byte40_table_ps[8] = {
476 0,
477 250,
478 330,
479 500,
480 660,
481 750,
482 0,
483 0
484 };
485
486 trfc = (((spd.trctrfc_ext & 0x1) * 256) + spd.trfc) * 1000
487 + byte40_table_ps[(spd.trctrfc_ext >> 1) & 0x7];
488 }
489 trfc_clk = picos_to_clk(trfc);
490
491 /*
492 * Trcd, Byte 29, from quarter nanos to ps and clocks.
493 */
494 trcd_clk = picos_to_clk(spd.trcd * 250) & 0x7;
495
496 /*
497 * Convert trfc_clk to DDR controller fields. DDR I should
498 * fit in the REFREC field (16-19) of TIMING_CFG_1, but the
499 * 83xx controller has an extended REFREC field of three bits.
500 * The controller automatically adds 8 clocks to this value,
501 * so preadjust it down 8 first before splitting it up.
502 */
503 trfc_low = (trfc_clk - 8) & 0xf;
504 trfc_high = ((trfc_clk - 8) >> 4) & 0x3;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500505
506 ddr->timing_cfg_1 =
Xie Xiaobod61853c2007-02-14 18:27:17 +0800507 (((picos_to_clk(spd.trp * 250) & 0x07) << 28 ) | /* PRETOACT */
508 ((picos_to_clk(spd.tras * 1000) & 0x0f ) << 24 ) | /* ACTTOPRE */
509 (trcd_clk << 20 ) | /* ACTTORW */
510 (caslat_ctrl << 16 ) | /* CASLAT */
511 (trfc_low << 12 ) | /* REFEC */
512 ((twr_clk & 0x07) << 8) | /* WRRREC */
513 ((picos_to_clk(spd.trrd * 250) & 0x07) << 4) | /* ACTTOACT */
514 ((twtr_clk & 0x07) << 0) /* WRTORD */
515 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500516
Xie Xiaobod61853c2007-02-14 18:27:17 +0800517 /*
518 * Additive Latency
519 * For DDR I, 0.
520 * For DDR II, with ODT enabled, use "a value" less than ACTTORW,
521 * which comes from Trcd, and also note that:
522 * add_lat + caslat must be >= 4
523 */
524 add_lat = 0;
525 if (spd.mem_type == SPD_MEMTYPE_DDR2
526 && (odt_wr_cfg || odt_rd_cfg)
527 && (caslat < 4)) {
528 add_lat = trcd_clk - 1;
529 if ((add_lat + caslat) < 4) {
530 add_lat = 0;
531 }
532 }
533
534 /*
535 * Write Data Delay
536 * Historically 0x2 == 4/8 clock delay.
537 * Empirically, 0x3 == 6/8 clock delay is suggested for DDR I 266.
538 */
539 wr_data_delay = 2;
540
541 /*
542 * Write Latency
543 * Read to Precharge
544 * Minimum CKE Pulse Width.
545 * Four Activate Window
546 */
547 if (spd.mem_type == SPD_MEMTYPE_DDR) {
548 /*
549 * This is a lie. It should really be 1, but if it is
550 * set to 1, bits overlap into the old controller's
551 * otherwise unused ACSM field. If we leave it 0, then
552 * the HW will magically treat it as 1 for DDR 1. Oh Yea.
553 */
554 wr_lat = 0;
555
556 trtp_clk = 2; /* By the book. */
557 cke_min_clk = 1; /* By the book. */
558 four_act = 1; /* By the book. */
559
560 } else {
561 wr_lat = caslat - 1;
562
563 /* Convert SPD value from quarter nanos to picos. */
564 trtp_clk = picos_to_clk(spd.trtp * 250);
565
566 cke_min_clk = 3; /* By the book. */
567 four_act = picos_to_clk(37500); /* By the book. 1k pages? */
568 }
569
570 /*
571 * Empirically set ~MCAS-to-preamble override for DDR 2.
572 * Your milage will vary.
573 */
574 cpo = 0;
575 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
576 if (effective_data_rate == 266 || effective_data_rate == 333) {
577 cpo = 0x7; /* READ_LAT + 5/4 */
578 } else if (effective_data_rate == 400) {
579 cpo = 0x9; /* READ_LAT + 7/4 */
580 } else {
581 /* Automatic calibration */
582 cpo = 0x1f;
583 }
584 }
585
586 ddr->timing_cfg_2 = (0
587 | ((add_lat & 0x7) << 28) /* ADD_LAT */
588 | ((cpo & 0x1f) << 23) /* CPO */
589 | ((wr_lat & 0x7) << 19) /* WR_LAT */
590 | ((trtp_clk & 0x7) << 13) /* RD_TO_PRE */
591 | ((wr_data_delay & 0x7) << 10) /* WR_DATA_DELAY */
592 | ((cke_min_clk & 0x7) << 6) /* CKE_PLS */
593 | ((four_act & 0x1f) << 0) /* FOUR_ACT */
594 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500595
596 debug("DDR:timing_cfg_1=0x%08x\n", ddr->timing_cfg_1);
597 debug("DDR:timing_cfg_2=0x%08x\n", ddr->timing_cfg_2);
598
Dave Liuf6eda7f2006-10-25 14:41:21 -0500599 /* Check DIMM data bus width */
Dave Liu5f820432006-11-03 19:33:44 -0600600 if (spd.dataw_lsb == 0x20) {
Dave Liu036575c2007-08-04 13:37:39 +0800601 if (spd.mem_type == SPD_MEMTYPE_DDR)
602 burstlen = 0x03; /* 32 bit data bus, burst len is 8 */
Dave Liu49bb5992007-08-10 15:48:59 +0800603 else
Dave Liu036575c2007-08-04 13:37:39 +0800604 burstlen = 0x02; /* 32 bit data bus, burst len is 4 */
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500605 debug("\n DDR DIMM: data bus width is 32 bit");
Dave Liu5f820432006-11-03 19:33:44 -0600606 } else {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500607 burstlen = 0x02; /* Others act as 64 bit bus, burst len is 4 */
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500608 debug("\n DDR DIMM: data bus width is 64 bit");
Dave Liuf6eda7f2006-10-25 14:41:21 -0500609 }
610
611 /* Is this an ECC DDR chip? */
Timur Tabie857a5b2006-11-28 12:09:35 -0600612 if (spd.config == 0x02)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500613 debug(" with ECC\n");
Timur Tabie857a5b2006-11-28 12:09:35 -0600614 else
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500615 debug(" without ECC\n");
Dave Liuf6eda7f2006-10-25 14:41:21 -0500616
617 /* Burst length is always 4 for 64 bit data bus, 8 for 32 bit data bus,
618 Burst type is sequential
Eran Libertyf046ccd2005-07-28 10:08:46 -0500619 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800620 if (spd.mem_type == SPD_MEMTYPE_DDR) {
621 switch (caslat) {
Dave Liu5f820432006-11-03 19:33:44 -0600622 case 1:
623 ddr->sdram_mode = 0x50 | burstlen; /* CL=1.5 */
624 break;
625 case 2:
626 ddr->sdram_mode = 0x20 | burstlen; /* CL=2.0 */
627 break;
628 case 3:
629 ddr->sdram_mode = 0x60 | burstlen; /* CL=2.5 */
630 break;
631 case 4:
632 ddr->sdram_mode = 0x30 | burstlen; /* CL=3.0 */
633 break;
634 default:
635 printf("DDR:only CL 1.5, 2.0, 2.5, 3.0 is supported\n");
636 return 0;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800637 }
638 } else {
639 mode_odt_enable = 0x0; /* Default disabled */
640 if (odt_wr_cfg || odt_rd_cfg) {
641 /*
642 * Bits 6 and 2 in Extended MRS(1)
643 * Bit 2 == 0x04 == 75 Ohm, with 2 DIMM modules.
644 * Bit 6 == 0x40 == 150 Ohm, with 1 DIMM module.
645 */
646 mode_odt_enable = 0x40; /* 150 Ohm */
647 }
648
649 ddr->sdram_mode =
650 (0
651 | (1 << (16 + 10)) /* DQS Differential disable */
652 | (add_lat << (16 + 3)) /* Additive Latency in EMRS1 */
653 | (mode_odt_enable << 16) /* ODT Enable in EMRS1 */
Xie Xiaobo6fbf2612007-03-09 19:08:25 +0800654 | ((twr_clk - 1) << 9) /* Write Recovery Autopre */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800655 | (caslat << 4) /* caslat */
656 | (burstlen << 0) /* Burst length */
657 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500658 }
659 debug("DDR:sdram_mode=0x%08x\n", ddr->sdram_mode);
660
Xie Xiaobod61853c2007-02-14 18:27:17 +0800661 /*
662 * Clear EMRS2 and EMRS3.
663 */
664 ddr->sdram_mode2 = 0;
665 debug("DDR: sdram_mode2 = 0x%08x\n", ddr->sdram_mode2);
666
Dave Liu5f820432006-11-03 19:33:44 -0600667 switch (spd.refresh) {
668 case 0x00:
669 case 0x80:
670 refresh_clk = picos_to_clk(15625000);
671 break;
672 case 0x01:
673 case 0x81:
674 refresh_clk = picos_to_clk(3900000);
675 break;
676 case 0x02:
677 case 0x82:
678 refresh_clk = picos_to_clk(7800000);
679 break;
680 case 0x03:
681 case 0x83:
682 refresh_clk = picos_to_clk(31300000);
683 break;
684 case 0x04:
685 case 0x84:
686 refresh_clk = picos_to_clk(62500000);
687 break;
688 case 0x05:
689 case 0x85:
690 refresh_clk = picos_to_clk(125000000);
691 break;
692 default:
693 refresh_clk = 0x512;
694 break;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500695 }
696
697 /*
698 * Set BSTOPRE to 0x100 for page mode
699 * If auto-charge is used, set BSTOPRE = 0
700 */
Dave Liu5f820432006-11-03 19:33:44 -0600701 ddr->sdram_interval = ((refresh_clk & 0x3fff) << 16) | 0x100;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500702 debug("DDR:sdram_interval=0x%08x\n", ddr->sdram_interval);
703
Xie Xiaobod61853c2007-02-14 18:27:17 +0800704 /*
705 * SDRAM Cfg 2
706 */
707 odt_cfg = 0;
708 if (odt_rd_cfg | odt_wr_cfg) {
709 odt_cfg = 0x2; /* ODT to IOs during reads */
710 }
711 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
712 ddr->sdram_cfg2 = (0
713 | (0 << 26) /* True DQS */
714 | (odt_cfg << 21) /* ODT only read */
715 | (1 << 12) /* 1 refresh at a time */
716 );
717
718 debug("DDR: sdram_cfg2 = 0x%08x\n", ddr->sdram_cfg2);
719 }
720
Paul Gortmaker91e25762007-01-16 11:38:14 -0500721#ifdef CFG_DDR_SDRAM_CLK_CNTL /* Optional platform specific value */
722 ddr->sdram_clk_cntl = CFG_DDR_SDRAM_CLK_CNTL;
Paul Gortmaker91e25762007-01-16 11:38:14 -0500723#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500724 debug("DDR:sdram_clk_cntl=0x%08x\n", ddr->sdram_clk_cntl);
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100725
Eran Libertyf046ccd2005-07-28 10:08:46 -0500726 asm("sync;isync");
727
Dave Liuf6eda7f2006-10-25 14:41:21 -0500728 udelay(600);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500729
730 /*
Dave Liu5f820432006-11-03 19:33:44 -0600731 * Figure out the settings for the sdram_cfg register. Build up
732 * the value in 'sdram_cfg' before writing since the write into
Eran Libertyf046ccd2005-07-28 10:08:46 -0500733 * the register will actually enable the memory controller, and all
734 * settings must be done before enabling.
735 *
736 * sdram_cfg[0] = 1 (ddr sdram logic enable)
737 * sdram_cfg[1] = 1 (self-refresh-enable)
Xie Xiaobod61853c2007-02-14 18:27:17 +0800738 * sdram_cfg[5:7] = (SDRAM type = DDR SDRAM)
739 * 010 DDR 1 SDRAM
740 * 011 DDR 2 SDRAM
Dave Liuf6eda7f2006-10-25 14:41:21 -0500741 * sdram_cfg[12] = 0 (32_BE =0 , 64 bit bus mode)
742 * sdram_cfg[13] = 0 (8_BE =0, 4-beat bursts)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500743 */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800744 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500745 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR1;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800746 else
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500747 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR1;
Xie Xiaobod61853c2007-02-14 18:27:17 +0800748
749 sdram_cfg = (0
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500750 | SDRAM_CFG_MEM_EN /* DDR enable */
751 | SDRAM_CFG_SREN /* Self refresh */
752 | sdram_type /* SDRAM type */
Xie Xiaobod61853c2007-02-14 18:27:17 +0800753 );
Eran Libertyf046ccd2005-07-28 10:08:46 -0500754
Dave Liuf6eda7f2006-10-25 14:41:21 -0500755 /* sdram_cfg[3] = RD_EN - registered DIMM enable */
Timur Tabie857a5b2006-11-28 12:09:35 -0600756 if (spd.mod_attr & 0x02)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500757 sdram_cfg |= SDRAM_CFG_RD_EN;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500758
Dave Liuf6eda7f2006-10-25 14:41:21 -0500759 /* The DIMM is 32bit width */
Dave Liu036575c2007-08-04 13:37:39 +0800760 if (spd.dataw_lsb == 0x20) {
761 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500762 sdram_cfg |= SDRAM_CFG_32_BE | SDRAM_CFG_8_BE;
Dave Liu036575c2007-08-04 13:37:39 +0800763 if (spd.mem_type == SPD_MEMTYPE_DDR2)
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500764 sdram_cfg |= SDRAM_CFG_32_BE;
Dave Liu036575c2007-08-04 13:37:39 +0800765 }
Timur Tabie857a5b2006-11-28 12:09:35 -0600766
Dave Liuf6eda7f2006-10-25 14:41:21 -0500767 ddrc_ecc_enable = 0;
768
Eran Libertyf046ccd2005-07-28 10:08:46 -0500769#if defined(CONFIG_DDR_ECC)
Dave Liuf6eda7f2006-10-25 14:41:21 -0500770 /* Enable ECC with sdram_cfg[2] */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500771 if (spd.config == 0x02) {
Dave Liuf6eda7f2006-10-25 14:41:21 -0500772 sdram_cfg |= 0x20000000;
773 ddrc_ecc_enable = 1;
774 /* disable error detection */
775 ddr->err_disable = ~ECC_ERROR_ENABLE;
776 /* set single bit error threshold to maximum value,
777 * reset counter to zero */
778 ddr->err_sbe = (255 << ECC_ERROR_MAN_SBET_SHIFT) |
Dave Liu5f820432006-11-03 19:33:44 -0600779 (0 << ECC_ERROR_MAN_SBEC_SHIFT);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500780 }
Dave Liuf6eda7f2006-10-25 14:41:21 -0500781
782 debug("DDR:err_disable=0x%08x\n", ddr->err_disable);
783 debug("DDR:err_sbe=0x%08x\n", ddr->err_sbe);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500784#endif
Kim Phillipsbbea46f2007-08-16 22:52:48 -0500785 debug(" DDRC ECC mode: %s\n", ddrc_ecc_enable ? "ON":"OFF");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500786
787#if defined(CONFIG_DDR_2T_TIMING)
788 /*
789 * Enable 2T timing by setting sdram_cfg[16].
790 */
Dave Liuf6eda7f2006-10-25 14:41:21 -0500791 sdram_cfg |= SDRAM_CFG_2T_EN;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500792#endif
Dave Liuf6eda7f2006-10-25 14:41:21 -0500793 /* Enable controller, and GO! */
794 ddr->sdram_cfg = sdram_cfg;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500795 asm("sync;isync");
796 udelay(500);
797
798 debug("DDR:sdram_cfg=0x%08x\n", ddr->sdram_cfg);
Rafal Jaworowskidc9e4992006-03-16 17:46:46 +0100799 return memsize; /*in MBytes*/
Eran Libertyf046ccd2005-07-28 10:08:46 -0500800}
Eran Libertyf046ccd2005-07-28 10:08:46 -0500801#endif /* CONFIG_SPD_EEPROM */
802
Dave Liuf6eda7f2006-10-25 14:41:21 -0500803#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRC)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500804/*
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100805 * Use timebase counter, get_timer() is not availabe
806 * at this point of initialization yet.
807 */
808static __inline__ unsigned long get_tbms (void)
809{
810 unsigned long tbl;
811 unsigned long tbu1, tbu2;
812 unsigned long ms;
813 unsigned long long tmp;
814
815 ulong tbclk = get_tbclk();
816
817 /* get the timebase ticks */
818 do {
819 asm volatile ("mftbu %0":"=r" (tbu1):);
820 asm volatile ("mftb %0":"=r" (tbl):);
821 asm volatile ("mftbu %0":"=r" (tbu2):);
822 } while (tbu1 != tbu2);
823
824 /* convert ticks to ms */
825 tmp = (unsigned long long)(tbu1);
826 tmp = (tmp << 32);
827 tmp += (unsigned long long)(tbl);
828 ms = tmp/(tbclk/1000);
829
830 return ms;
831}
832
833/*
Eran Libertyf046ccd2005-07-28 10:08:46 -0500834 * Initialize all of memory for ECC, then enable errors.
835 */
Wolfgang Denkcf48eb92006-04-16 10:51:58 +0200836/* #define CONFIG_DDR_ECC_INIT_VIA_DMA */
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100837void ddr_enable_ecc(unsigned int dram_size)
Eran Libertyf046ccd2005-07-28 10:08:46 -0500838{
Timur Tabid239d742006-11-03 12:00:28 -0600839 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Dave Liuf6eda7f2006-10-25 14:41:21 -0500840 volatile ddr83xx_t *ddr= &immap->ddr;
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100841 unsigned long t_start, t_end;
Dave Liu90f30a72006-11-02 18:05:50 -0600842 register u64 *p;
843 register uint size;
844 unsigned int pattern[2];
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100845#if defined(CONFIG_DDR_ECC_INIT_VIA_DMA)
846 uint i;
847#endif
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100848 icache_enable();
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100849 t_start = get_tbms();
Dave Liu90f30a72006-11-02 18:05:50 -0600850 pattern[0] = 0xdeadbeef;
851 pattern[1] = 0xdeadbeef;
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100852
853#if !defined(CONFIG_DDR_ECC_INIT_VIA_DMA)
Dave Liu90f30a72006-11-02 18:05:50 -0600854 debug("ddr init: CPU FP write method\n");
855 size = dram_size;
856 for (p = 0; p < (u64*)(size); p++) {
857 ppcDWstore((u32*)p, pattern);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500858 }
Dave Liu90f30a72006-11-02 18:05:50 -0600859 __asm__ __volatile__ ("sync");
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100860#else
Dave Liu90f30a72006-11-02 18:05:50 -0600861 debug("ddr init: DMA method\n");
862 size = 0x2000;
863 for (p = 0; p < (u64*)(size); p++) {
864 ppcDWstore((u32*)p, pattern);
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100865 }
Dave Liu90f30a72006-11-02 18:05:50 -0600866 __asm__ __volatile__ ("sync");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500867
Dave Liu90f30a72006-11-02 18:05:50 -0600868 /* Initialise DMA for direct transfer */
869 dma_init();
870 /* Start DMA to transfer */
Dave Liu5f820432006-11-03 19:33:44 -0600871 dma_xfer((uint *)0x2000, 0x2000, (uint *)0); /* 8K */
872 dma_xfer((uint *)0x4000, 0x4000, (uint *)0); /* 16K */
873 dma_xfer((uint *)0x8000, 0x8000, (uint *)0); /* 32K */
874 dma_xfer((uint *)0x10000, 0x10000, (uint *)0); /* 64K */
875 dma_xfer((uint *)0x20000, 0x20000, (uint *)0); /* 128K */
876 dma_xfer((uint *)0x40000, 0x40000, (uint *)0); /* 256K */
877 dma_xfer((uint *)0x80000, 0x80000, (uint *)0); /* 512K */
878 dma_xfer((uint *)0x100000, 0x100000, (uint *)0); /* 1M */
879 dma_xfer((uint *)0x200000, 0x200000, (uint *)0); /* 2M */
880 dma_xfer((uint *)0x400000, 0x400000, (uint *)0); /* 4M */
Eran Libertyf046ccd2005-07-28 10:08:46 -0500881
882 for (i = 1; i < dram_size / 0x800000; i++) {
883 dma_xfer((uint *)(0x800000*i), 0x800000, (uint *)0);
884 }
Jon Loeligerde1d0a62005-08-01 13:20:47 -0500885#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500886
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +0100887 t_end = get_tbms();
888 icache_disable();
889
890 debug("\nREADY!!\n");
891 debug("ddr init duration: %ld ms\n", t_end - t_start);
892
893 /* Clear All ECC Errors */
894 if ((ddr->err_detect & ECC_ERROR_DETECT_MME) == ECC_ERROR_DETECT_MME)
895 ddr->err_detect |= ECC_ERROR_DETECT_MME;
896 if ((ddr->err_detect & ECC_ERROR_DETECT_MBE) == ECC_ERROR_DETECT_MBE)
897 ddr->err_detect |= ECC_ERROR_DETECT_MBE;
898 if ((ddr->err_detect & ECC_ERROR_DETECT_SBE) == ECC_ERROR_DETECT_SBE)
899 ddr->err_detect |= ECC_ERROR_DETECT_SBE;
900 if ((ddr->err_detect & ECC_ERROR_DETECT_MSE) == ECC_ERROR_DETECT_MSE)
901 ddr->err_detect |= ECC_ERROR_DETECT_MSE;
902
903 /* Disable ECC-Interrupts */
904 ddr->err_int_en &= ECC_ERR_INT_DISABLE;
905
906 /* Enable errors for ECC */
907 ddr->err_disable &= ECC_ERROR_ENABLE;
908
909 __asm__ __volatile__ ("sync");
910 __asm__ __volatile__ ("isync");
911}
Eran Libertyf046ccd2005-07-28 10:08:46 -0500912#endif /* CONFIG_DDR_ECC */