blob: a14a438b02dbff743fa57fdff943c8522edfcb58 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Eran Liberty9095d4a2005-07-28 10:08:46 -05002/*
Dave Liub19ecd32007-09-18 12:37:57 +08003 * (C) Copyright 2006-2007 Freescale Semiconductor, Inc.
Dave Liuf5035922006-10-25 14:41:21 -05004 *
Rafal Jaworowski4a9b6aa2006-03-16 17:46:46 +01005 * (C) Copyright 2006
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denkebd3deb2006-04-16 10:51:58 +02007 *
Dave Liua46daea2006-11-03 19:33:44 -06008 * Copyright (C) 2004-2006 Freescale Semiconductor, Inc.
Eran Liberty9095d4a2005-07-28 10:08:46 -05009 * (C) Copyright 2003 Motorola Inc.
10 * Xianghua Xiao (X.Xiao@motorola.com)
Eran Liberty9095d4a2005-07-28 10:08:46 -050011 */
12
Mario Six538b5752018-08-06 10:23:30 +020013#ifndef CONFIG_MPC83XX_SDRAM
14
Eran Liberty9095d4a2005-07-28 10:08:46 -050015#include <common.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070016#include <cpu_func.h>
Simon Glassf5c208d2019-11-14 12:57:20 -070017#include <vsprintf.h>
Eran Liberty9095d4a2005-07-28 10:08:46 -050018#include <asm/processor.h>
Stefan Roese3fab9992009-12-08 09:10:04 +010019#include <asm/io.h>
Eran Liberty9095d4a2005-07-28 10:08:46 -050020#include <i2c.h>
21#include <spd.h>
22#include <asm/mmu.h>
23#include <spd_sdram.h>
24
Kim Phillipsdf6df6f2008-03-28 10:18:53 -050025DECLARE_GLOBAL_DATA_PTR;
26
Kim Phillips3b9c20f2007-08-16 22:52:48 -050027void board_add_ram_info(int use_default)
28{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020029 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Kim Phillips3b9c20f2007-08-16 22:52:48 -050030 volatile ddr83xx_t *ddr = &immap->ddr;
Kim Phillipsdf6df6f2008-03-28 10:18:53 -050031 char buf[32];
Kim Phillips3b9c20f2007-08-16 22:52:48 -050032
33 printf(" (DDR%d", ((ddr->sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK)
34 >> SDRAM_CFG_SDRAM_TYPE_SHIFT) - 1);
35
Mario Six9164bdd2019-01-21 09:17:25 +010036#if defined(CONFIG_ARCH_MPC8308) || defined(CONFIG_ARCH_MPC831X)
Joe Hershbergercc03b802011-10-11 23:57:29 -050037 if ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK) == SDRAM_CFG_DBW_16)
38 puts(", 16-bit");
39 else if ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK) == SDRAM_CFG_DBW_32)
40 puts(", 32-bit");
41 else
42 puts(", unknown width");
43#else
Kim Phillips3b9c20f2007-08-16 22:52:48 -050044 if (ddr->sdram_cfg & SDRAM_CFG_32_BE)
45 puts(", 32-bit");
46 else
47 puts(", 64-bit");
Joe Hershbergercc03b802011-10-11 23:57:29 -050048#endif
Kim Phillips3b9c20f2007-08-16 22:52:48 -050049
50 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
Kim Phillipsdf6df6f2008-03-28 10:18:53 -050051 puts(", ECC on");
Kim Phillips3b9c20f2007-08-16 22:52:48 -050052 else
Kim Phillipsdf6df6f2008-03-28 10:18:53 -050053 puts(", ECC off");
54
55 printf(", %s MHz)", strmhz(buf, gd->mem_clk));
Kim Phillips3b9c20f2007-08-16 22:52:48 -050056
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020057#if defined(CONFIG_SYS_LB_SDRAM) && defined(CONFIG_SYS_LBC_SDRAM_SIZE)
Kim Phillips3b9c20f2007-08-16 22:52:48 -050058 puts("\nSDRAM: ");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020059 print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, " (local bus)");
Kim Phillips3b9c20f2007-08-16 22:52:48 -050060#endif
61}
62
Eran Liberty9095d4a2005-07-28 10:08:46 -050063#ifdef CONFIG_SPD_EEPROM
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020064#ifndef CONFIG_SYS_READ_SPD
65#define CONFIG_SYS_READ_SPD i2c_read
Eran Liberty9095d4a2005-07-28 10:08:46 -050066#endif
Andre Schwarz10ea0af2011-04-14 14:54:05 +020067#ifndef SPD_EEPROM_OFFSET
68#define SPD_EEPROM_OFFSET 0
69#endif
70#ifndef SPD_EEPROM_ADDR_LEN
71#define SPD_EEPROM_ADDR_LEN 1
72#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -050073
Eran Liberty9095d4a2005-07-28 10:08:46 -050074/*
75 * Convert picoseconds into clock cycles (rounding up if needed).
76 */
Eran Liberty9095d4a2005-07-28 10:08:46 -050077int
78picos_to_clk(int picos)
79{
Kim Phillipsc02cf1e2008-03-28 10:18:40 -050080 unsigned int mem_bus_clk;
Eran Liberty9095d4a2005-07-28 10:08:46 -050081 int clks;
82
Kim Phillipsc02cf1e2008-03-28 10:18:40 -050083 mem_bus_clk = gd->mem_clk >> 1;
84 clks = picos / (1000000000 / (mem_bus_clk / 1000));
85 if (picos % (1000000000 / (mem_bus_clk / 1000)) != 0)
Dave Liuf5035922006-10-25 14:41:21 -050086 clks++;
Eran Liberty9095d4a2005-07-28 10:08:46 -050087
88 return clks;
89}
90
Marian Balakowicz6f6104d2006-03-14 16:23:35 +010091unsigned int banksize(unsigned char row_dens)
Eran Liberty9095d4a2005-07-28 10:08:46 -050092{
93 return ((row_dens >> 2) | ((row_dens & 3) << 6)) << 24;
94}
95
Marian Balakowicz6f6104d2006-03-14 16:23:35 +010096int read_spd(uint addr)
97{
98 return ((int) addr);
99}
100
Rafal Jaworowski4a9b6aa2006-03-16 17:46:46 +0100101#undef SPD_DEBUG
102#ifdef SPD_DEBUG
103static void spd_debug(spd_eeprom_t *spd)
104{
105 printf ("\nDIMM type: %-18.18s\n", spd->mpart);
106 printf ("SPD size: %d\n", spd->info_size);
107 printf ("EEPROM size: %d\n", 1 << spd->chip_size);
108 printf ("Memory type: %d\n", spd->mem_type);
109 printf ("Row addr: %d\n", spd->nrow_addr);
110 printf ("Column addr: %d\n", spd->ncol_addr);
111 printf ("# of rows: %d\n", spd->nrows);
112 printf ("Row density: %d\n", spd->row_dens);
113 printf ("# of banks: %d\n", spd->nbanks);
114 printf ("Data width: %d\n",
115 256 * spd->dataw_msb + spd->dataw_lsb);
116 printf ("Chip width: %d\n", spd->primw);
117 printf ("Refresh rate: %02X\n", spd->refresh);
118 printf ("CAS latencies: %02X\n", spd->cas_lat);
119 printf ("Write latencies: %02X\n", spd->write_lat);
120 printf ("tRP: %d\n", spd->trp);
121 printf ("tRCD: %d\n", spd->trcd);
122 printf ("\n");
123}
124#endif /* SPD_DEBUG */
125
126long int spd_sdram()
Eran Liberty9095d4a2005-07-28 10:08:46 -0500127{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200128 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Dave Liuf5035922006-10-25 14:41:21 -0500129 volatile ddr83xx_t *ddr = &immap->ddr;
130 volatile law83xx_t *ecm = &immap->sysconf.ddrlaw[0];
Eran Liberty9095d4a2005-07-28 10:08:46 -0500131 spd_eeprom_t spd;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800132 unsigned int n_ranks;
133 unsigned int odt_rd_cfg, odt_wr_cfg;
134 unsigned char twr_clk, twtr_clk;
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500135 unsigned int sdram_type;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500136 unsigned int memsize;
137 unsigned int law_size;
Dave Liuf5035922006-10-25 14:41:21 -0500138 unsigned char caslat, caslat_ctrl;
Kim Phillips805b3c62011-11-15 22:59:51 +0000139 unsigned int trfc, trfc_clk, trfc_low;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800140 unsigned int trcd_clk, trtp_clk;
141 unsigned char cke_min_clk;
142 unsigned char add_lat, wr_lat;
143 unsigned char wr_data_delay;
144 unsigned char four_act;
145 unsigned char cpo;
Dave Liuf5035922006-10-25 14:41:21 -0500146 unsigned char burstlen;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800147 unsigned char odt_cfg, mode_odt_enable;
Dave Liuf5035922006-10-25 14:41:21 -0500148 unsigned int max_bus_clk;
149 unsigned int max_data_rate, effective_data_rate;
150 unsigned int ddrc_clk;
151 unsigned int refresh_clk;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800152 unsigned int sdram_cfg;
Dave Liuf5035922006-10-25 14:41:21 -0500153 unsigned int ddrc_ecc_enable;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800154 unsigned int pvr = get_pvr();
Jon Loeligerebc72242005-08-01 13:20:47 -0500155
Stefan Roese3fab9992009-12-08 09:10:04 +0100156 /*
157 * First disable the memory controller (could be enabled
158 * by the debugger)
159 */
160 clrsetbits_be32(&ddr->sdram_cfg, SDRAM_CFG_MEM_EN, 0);
161 sync();
162 isync();
163
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100164 /* Read SPD parameters with I2C */
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200165 CONFIG_SYS_READ_SPD(SPD_EEPROM_ADDRESS, SPD_EEPROM_OFFSET,
166 SPD_EEPROM_ADDR_LEN, (uchar *) &spd, sizeof(spd));
Rafal Jaworowski4a9b6aa2006-03-16 17:46:46 +0100167#ifdef SPD_DEBUG
168 spd_debug(&spd);
169#endif
Dave Liuf5035922006-10-25 14:41:21 -0500170 /* Check the memory type */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800171 if (spd.mem_type != SPD_MEMTYPE_DDR && spd.mem_type != SPD_MEMTYPE_DDR2) {
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500172 debug("DDR: Module mem type is %02X\n", spd.mem_type);
Dave Liuf5035922006-10-25 14:41:21 -0500173 return 0;
174 }
175
176 /* Check the number of physical bank */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800177 if (spd.mem_type == SPD_MEMTYPE_DDR) {
178 n_ranks = spd.nrows;
179 } else {
180 n_ranks = (spd.nrows & 0x7) + 1;
181 }
182
183 if (n_ranks > 2) {
184 printf("DDR: The number of physical bank is %02X\n", n_ranks);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500185 return 0;
186 }
187
Dave Liuf5035922006-10-25 14:41:21 -0500188 /* Check if the number of row of the module is in the range of DDRC */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800189 if (spd.nrow_addr < 12 || spd.nrow_addr > 15) {
Dave Liuf5035922006-10-25 14:41:21 -0500190 printf("DDR: Row number is out of range of DDRC, row=%02X\n",
191 spd.nrow_addr);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500192 return 0;
193 }
194
Dave Liuf5035922006-10-25 14:41:21 -0500195 /* Check if the number of col of the module is in the range of DDRC */
196 if (spd.ncol_addr < 8 || spd.ncol_addr > 11) {
197 printf("DDR: Col number is out of range of DDRC, col=%02X\n",
198 spd.ncol_addr);
199 return 0;
200 }
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800201
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200202#ifdef CONFIG_SYS_DDRCDR_VALUE
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800203 /*
204 * Adjust DDR II IO voltage biasing. It just makes it work.
205 */
206 if(spd.mem_type == SPD_MEMTYPE_DDR2) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200207 immap->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800208 }
Dave Liub19ecd32007-09-18 12:37:57 +0800209 udelay(50000);
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800210#endif
211
212 /*
213 * ODT configuration recommendation from DDR Controller Chapter.
214 */
215 odt_rd_cfg = 0; /* Never assert ODT */
216 odt_wr_cfg = 0; /* Never assert ODT */
217 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
218 odt_wr_cfg = 1; /* Assert ODT on writes to CSn */
219 }
220
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100221 /* Setup DDR chip select register */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200222#ifdef CONFIG_SYS_83XX_DDR_USES_CS0
Dave Liua46daea2006-11-03 19:33:44 -0600223 ddr->csbnds[0].csbnds = (banksize(spd.row_dens) >> 24) - 1;
224 ddr->cs_config[0] = ( 1 << 31
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800225 | (odt_rd_cfg << 20)
226 | (odt_wr_cfg << 16)
Jerry Van Barena07888b2009-03-13 11:40:10 -0400227 | ((spd.nbanks == 8 ? 1 : 0) << 14)
228 | ((spd.nrow_addr - 12) << 8)
Dave Liua46daea2006-11-03 19:33:44 -0600229 | (spd.ncol_addr - 8) );
230 debug("\n");
231 debug("cs0_bnds = 0x%08x\n",ddr->csbnds[0].csbnds);
232 debug("cs0_config = 0x%08x\n",ddr->cs_config[0]);
233
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800234 if (n_ranks == 2) {
Dave Liua46daea2006-11-03 19:33:44 -0600235 ddr->csbnds[1].csbnds = ( (banksize(spd.row_dens) >> 8)
236 | ((banksize(spd.row_dens) >> 23) - 1) );
237 ddr->cs_config[1] = ( 1<<31
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800238 | (odt_rd_cfg << 20)
239 | (odt_wr_cfg << 16)
Jerry Van Barena07888b2009-03-13 11:40:10 -0400240 | ((spd.nbanks == 8 ? 1 : 0) << 14)
241 | ((spd.nrow_addr - 12) << 8)
242 | (spd.ncol_addr - 8) );
Dave Liua46daea2006-11-03 19:33:44 -0600243 debug("cs1_bnds = 0x%08x\n",ddr->csbnds[1].csbnds);
244 debug("cs1_config = 0x%08x\n",ddr->cs_config[1]);
245 }
246
247#else
Eran Liberty9095d4a2005-07-28 10:08:46 -0500248 ddr->csbnds[2].csbnds = (banksize(spd.row_dens) >> 24) - 1;
249 ddr->cs_config[2] = ( 1 << 31
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800250 | (odt_rd_cfg << 20)
251 | (odt_wr_cfg << 16)
Jerry Van Barena07888b2009-03-13 11:40:10 -0400252 | ((spd.nbanks == 8 ? 1 : 0) << 14)
253 | ((spd.nrow_addr - 12) << 8)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500254 | (spd.ncol_addr - 8) );
255 debug("\n");
256 debug("cs2_bnds = 0x%08x\n",ddr->csbnds[2].csbnds);
257 debug("cs2_config = 0x%08x\n",ddr->cs_config[2]);
Jon Loeligerebc72242005-08-01 13:20:47 -0500258
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800259 if (n_ranks == 2) {
Eran Liberty9095d4a2005-07-28 10:08:46 -0500260 ddr->csbnds[3].csbnds = ( (banksize(spd.row_dens) >> 8)
261 | ((banksize(spd.row_dens) >> 23) - 1) );
262 ddr->cs_config[3] = ( 1<<31
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800263 | (odt_rd_cfg << 20)
264 | (odt_wr_cfg << 16)
Jerry Van Barena07888b2009-03-13 11:40:10 -0400265 | ((spd.nbanks == 8 ? 1 : 0) << 14)
266 | ((spd.nrow_addr - 12) << 8)
267 | (spd.ncol_addr - 8) );
Eran Liberty9095d4a2005-07-28 10:08:46 -0500268 debug("cs3_bnds = 0x%08x\n",ddr->csbnds[3].csbnds);
269 debug("cs3_config = 0x%08x\n",ddr->cs_config[3]);
270 }
Timur Tabi054838e2006-10-31 18:44:42 -0600271#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500272
Eran Liberty9095d4a2005-07-28 10:08:46 -0500273 /*
274 * Figure out memory size in Megabytes.
275 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800276 memsize = n_ranks * banksize(spd.row_dens) / 0x100000;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500277
278 /*
279 * First supported LAW size is 16M, at LAWAR_SIZE_16M == 23.
280 */
281 law_size = 19 + __ilog2(memsize);
282
283 /*
284 * Set up LAWBAR for all of DDR.
285 */
Mario Six805cac12019-01-21 09:18:16 +0100286 ecm->bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500287 ecm->ar = (LAWAR_EN | LAWAR_TRGT_IF_DDR | (LAWAR_SIZE & law_size));
288 debug("DDR:bar=0x%08x\n", ecm->bar);
289 debug("DDR:ar=0x%08x\n", ecm->ar);
290
291 /*
Dave Liuf5035922006-10-25 14:41:21 -0500292 * Find the largest CAS by locating the highest 1 bit
293 * in the spd.cas_lat field. Translate it to a DDR
294 * controller field value:
295 *
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800296 * CAS Lat DDR I DDR II Ctrl
297 * Clocks SPD Bit SPD Bit Value
298 * ------- ------- ------- -----
299 * 1.0 0 0001
300 * 1.5 1 0010
301 * 2.0 2 2 0011
302 * 2.5 3 0100
303 * 3.0 4 3 0101
304 * 3.5 5 0110
305 * 4.0 6 4 0111
306 * 4.5 1000
307 * 5.0 5 1001
Eran Liberty9095d4a2005-07-28 10:08:46 -0500308 */
Dave Liuf5035922006-10-25 14:41:21 -0500309 caslat = __ilog2(spd.cas_lat);
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800310 if ((spd.mem_type == SPD_MEMTYPE_DDR)
311 && (caslat > 6)) {
312 printf("DDR I: Invalid SPD CAS Latency: 0x%x.\n", spd.cas_lat);
313 return 0;
314 } else if (spd.mem_type == SPD_MEMTYPE_DDR2
315 && (caslat < 2 || caslat > 5)) {
316 printf("DDR II: Invalid SPD CAS Latency: 0x%x.\n",
317 spd.cas_lat);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500318 return 0;
319 }
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800320 debug("DDR: caslat SPD bit is %d\n", caslat);
321
Dave Liuf5035922006-10-25 14:41:21 -0500322 max_bus_clk = 1000 *10 / (((spd.clk_cycle & 0xF0) >> 4) * 10
323 + (spd.clk_cycle & 0x0f));
324 max_data_rate = max_bus_clk * 2;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500325
Wolfgang Denkaf0501a2008-10-19 02:35:50 +0200326 debug("DDR:Module maximum data rate is: %d MHz\n", max_data_rate);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500327
Kim Phillipsc02cf1e2008-03-28 10:18:40 -0500328 ddrc_clk = gd->mem_clk / 1000000;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800329 effective_data_rate = 0;
Dave Liuf5035922006-10-25 14:41:21 -0500330
Dave Liu6b051042009-02-25 12:31:32 +0800331 if (max_data_rate >= 460) { /* it is DDR2-800, 667, 533 */
332 if (spd.cas_lat & 0x08)
333 caslat = 3;
334 else
335 caslat = 4;
336 if (ddrc_clk <= 460 && ddrc_clk > 350)
337 effective_data_rate = 400;
338 else if (ddrc_clk <=350 && ddrc_clk > 280)
339 effective_data_rate = 333;
340 else if (ddrc_clk <= 280 && ddrc_clk > 230)
341 effective_data_rate = 266;
342 else
343 effective_data_rate = 200;
344 } else if (max_data_rate >= 390 && max_data_rate < 460) { /* it is DDR 400 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800345 if (ddrc_clk <= 460 && ddrc_clk > 350) {
346 /* DDR controller clk at 350~460 */
Dave Liua46daea2006-11-03 19:33:44 -0600347 effective_data_rate = 400; /* 5ns */
348 caslat = caslat;
349 } else if (ddrc_clk <= 350 && ddrc_clk > 280) {
350 /* DDR controller clk at 280~350 */
351 effective_data_rate = 333; /* 6ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600352 if (spd.clk_cycle2 == 0x60)
Dave Liua46daea2006-11-03 19:33:44 -0600353 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600354 else
Dave Liua46daea2006-11-03 19:33:44 -0600355 caslat = caslat;
Dave Liua46daea2006-11-03 19:33:44 -0600356 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
357 /* DDR controller clk at 230~280 */
358 effective_data_rate = 266; /* 7.5ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600359 if (spd.clk_cycle3 == 0x75)
Dave Liua46daea2006-11-03 19:33:44 -0600360 caslat = caslat - 2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800361 else if (spd.clk_cycle2 == 0x75)
Dave Liua46daea2006-11-03 19:33:44 -0600362 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600363 else
Dave Liua46daea2006-11-03 19:33:44 -0600364 caslat = caslat;
Dave Liua46daea2006-11-03 19:33:44 -0600365 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
366 /* DDR controller clk at 90~230 */
367 effective_data_rate = 200; /* 10ns */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800368 if (spd.clk_cycle3 == 0xa0)
Dave Liua46daea2006-11-03 19:33:44 -0600369 caslat = caslat - 2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800370 else if (spd.clk_cycle2 == 0xa0)
Dave Liua46daea2006-11-03 19:33:44 -0600371 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600372 else
Dave Liua46daea2006-11-03 19:33:44 -0600373 caslat = caslat;
Dave Liua46daea2006-11-03 19:33:44 -0600374 }
Dave Liuf5035922006-10-25 14:41:21 -0500375 } else if (max_data_rate >= 323) { /* it is DDR 333 */
376 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liua46daea2006-11-03 19:33:44 -0600377 /* DDR controller clk at 280~350 */
Dave Liuf5035922006-10-25 14:41:21 -0500378 effective_data_rate = 333; /* 6ns */
379 caslat = caslat;
380 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liua46daea2006-11-03 19:33:44 -0600381 /* DDR controller clk at 230~280 */
382 effective_data_rate = 266; /* 7.5ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600383 if (spd.clk_cycle2 == 0x75)
Dave Liuf5035922006-10-25 14:41:21 -0500384 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600385 else
Dave Liua46daea2006-11-03 19:33:44 -0600386 caslat = caslat;
Dave Liuf5035922006-10-25 14:41:21 -0500387 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liua46daea2006-11-03 19:33:44 -0600388 /* DDR controller clk at 90~230 */
389 effective_data_rate = 200; /* 10ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600390 if (spd.clk_cycle3 == 0xa0)
Dave Liuf5035922006-10-25 14:41:21 -0500391 caslat = caslat - 2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800392 else if (spd.clk_cycle2 == 0xa0)
Dave Liua46daea2006-11-03 19:33:44 -0600393 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600394 else
Dave Liua46daea2006-11-03 19:33:44 -0600395 caslat = caslat;
Dave Liuf5035922006-10-25 14:41:21 -0500396 }
397 } else if (max_data_rate >= 256) { /* it is DDR 266 */
398 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liua46daea2006-11-03 19:33:44 -0600399 /* DDR controller clk at 280~350 */
Dave Liuf5035922006-10-25 14:41:21 -0500400 printf("DDR: DDR controller freq is more than "
401 "max data rate of the module\n");
402 return 0;
403 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liua46daea2006-11-03 19:33:44 -0600404 /* DDR controller clk at 230~280 */
Dave Liuf5035922006-10-25 14:41:21 -0500405 effective_data_rate = 266; /* 7.5ns */
406 caslat = caslat;
407 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liua46daea2006-11-03 19:33:44 -0600408 /* DDR controller clk at 90~230 */
409 effective_data_rate = 200; /* 10ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600410 if (spd.clk_cycle2 == 0xa0)
Dave Liuf5035922006-10-25 14:41:21 -0500411 caslat = caslat - 1;
Dave Liuf5035922006-10-25 14:41:21 -0500412 }
413 } else if (max_data_rate >= 190) { /* it is DDR 200 */
414 if (ddrc_clk <= 350 && ddrc_clk > 230) {
Dave Liua46daea2006-11-03 19:33:44 -0600415 /* DDR controller clk at 230~350 */
Dave Liuf5035922006-10-25 14:41:21 -0500416 printf("DDR: DDR controller freq is more than "
417 "max data rate of the module\n");
418 return 0;
419 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liua46daea2006-11-03 19:33:44 -0600420 /* DDR controller clk at 90~230 */
Dave Liuf5035922006-10-25 14:41:21 -0500421 effective_data_rate = 200; /* 10ns */
422 caslat = caslat;
423 }
Timur Tabiefec6302006-10-31 18:13:36 -0600424 }
425
Wolfgang Denkaf0501a2008-10-19 02:35:50 +0200426 debug("DDR:Effective data rate is: %dMHz\n", effective_data_rate);
Dave Liua46daea2006-11-03 19:33:44 -0600427 debug("DDR:The MSB 1 of CAS Latency is: %d\n", caslat);
Timur Tabiefec6302006-10-31 18:13:36 -0600428
Dave Liua46daea2006-11-03 19:33:44 -0600429 /*
430 * Errata DDR6 work around: input enable 2 cycles earlier.
Mario Six0344f5e2019-01-21 09:17:27 +0100431 * including MPC834X Rev1.0/1.1 and MPC8360 Rev1.1/1.2.
Dave Liua46daea2006-11-03 19:33:44 -0600432 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800433 if(PVR_MAJ(pvr) <= 1 && spd.mem_type == SPD_MEMTYPE_DDR){
434 if (caslat == 2)
435 ddr->debug_reg = 0x201c0000; /* CL=2 */
436 else if (caslat == 3)
437 ddr->debug_reg = 0x202c0000; /* CL=2.5 */
438 else if (caslat == 4)
439 ddr->debug_reg = 0x202c0000; /* CL=3.0 */
Timur Tabiff0215a2006-11-28 12:09:35 -0600440
Mario Sixc463b6d2019-01-21 09:18:21 +0100441 sync();
Timur Tabiefec6302006-10-31 18:13:36 -0600442
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800443 debug("Errata DDR6 (debug_reg=0x%08x)\n", ddr->debug_reg);
444 }
Eran Liberty9095d4a2005-07-28 10:08:46 -0500445
446 /*
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800447 * Convert caslat clocks to DDR controller value.
448 * Force caslat_ctrl to be DDR Controller field-sized.
449 */
450 if (spd.mem_type == SPD_MEMTYPE_DDR) {
451 caslat_ctrl = (caslat + 1) & 0x07;
452 } else {
453 caslat_ctrl = (2 * caslat - 1) & 0x0f;
454 }
455
456 debug("DDR: effective data rate is %d MHz\n", effective_data_rate);
457 debug("DDR: caslat SPD bit is %d, controller field is 0x%x\n",
458 caslat, caslat_ctrl);
459
460 /*
461 * Timing Config 0.
462 * Avoid writing for DDR I.
463 */
464 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
465 unsigned char taxpd_clk = 8; /* By the book. */
466 unsigned char tmrd_clk = 2; /* By the book. */
467 unsigned char act_pd_exit = 2; /* Empirical? */
468 unsigned char pre_pd_exit = 6; /* Empirical? */
469
470 ddr->timing_cfg_0 = (0
471 | ((act_pd_exit & 0x7) << 20) /* ACT_PD_EXIT */
472 | ((pre_pd_exit & 0x7) << 16) /* PRE_PD_EXIT */
473 | ((taxpd_clk & 0xf) << 8) /* ODT_PD_EXIT */
474 | ((tmrd_clk & 0xf) << 0) /* MRS_CYC */
475 );
476 debug("DDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0);
477 }
478
479 /*
480 * For DDR I, WRREC(Twr) and WRTORD(Twtr) are not in SPD,
481 * use conservative value.
482 * For DDR II, they are bytes 36 and 37, in quarter nanos.
483 */
484
485 if (spd.mem_type == SPD_MEMTYPE_DDR) {
486 twr_clk = 3; /* Clocks */
487 twtr_clk = 1; /* Clocks */
488 } else {
489 twr_clk = picos_to_clk(spd.twr * 250);
490 twtr_clk = picos_to_clk(spd.twtr * 250);
Dave Liu6b051042009-02-25 12:31:32 +0800491 if (twtr_clk < 2)
492 twtr_clk = 2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800493 }
494
495 /*
496 * Calculate Trfc, in picos.
497 * DDR I: Byte 42 straight up in ns.
498 * DDR II: Byte 40 and 42 swizzled some, in ns.
499 */
500 if (spd.mem_type == SPD_MEMTYPE_DDR) {
501 trfc = spd.trfc * 1000; /* up to ps */
502 } else {
503 unsigned int byte40_table_ps[8] = {
504 0,
505 250,
506 330,
507 500,
508 660,
509 750,
510 0,
511 0
512 };
513
514 trfc = (((spd.trctrfc_ext & 0x1) * 256) + spd.trfc) * 1000
515 + byte40_table_ps[(spd.trctrfc_ext >> 1) & 0x7];
516 }
517 trfc_clk = picos_to_clk(trfc);
518
519 /*
520 * Trcd, Byte 29, from quarter nanos to ps and clocks.
Eran Liberty9095d4a2005-07-28 10:08:46 -0500521 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800522 trcd_clk = picos_to_clk(spd.trcd * 250) & 0x7;
523
524 /*
525 * Convert trfc_clk to DDR controller fields. DDR I should
526 * fit in the REFREC field (16-19) of TIMING_CFG_1, but the
527 * 83xx controller has an extended REFREC field of three bits.
528 * The controller automatically adds 8 clocks to this value,
529 * so preadjust it down 8 first before splitting it up.
530 */
531 trfc_low = (trfc_clk - 8) & 0xf;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500532
533 ddr->timing_cfg_1 =
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800534 (((picos_to_clk(spd.trp * 250) & 0x07) << 28 ) | /* PRETOACT */
535 ((picos_to_clk(spd.tras * 1000) & 0x0f ) << 24 ) | /* ACTTOPRE */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200536 (trcd_clk << 20 ) | /* ACTTORW */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800537 (caslat_ctrl << 16 ) | /* CASLAT */
538 (trfc_low << 12 ) | /* REFEC */
539 ((twr_clk & 0x07) << 8) | /* WRRREC */
540 ((picos_to_clk(spd.trrd * 250) & 0x07) << 4) | /* ACTTOACT */
541 ((twtr_clk & 0x07) << 0) /* WRTORD */
542 );
543
544 /*
545 * Additive Latency
546 * For DDR I, 0.
547 * For DDR II, with ODT enabled, use "a value" less than ACTTORW,
548 * which comes from Trcd, and also note that:
549 * add_lat + caslat must be >= 4
550 */
551 add_lat = 0;
552 if (spd.mem_type == SPD_MEMTYPE_DDR2
553 && (odt_wr_cfg || odt_rd_cfg)
554 && (caslat < 4)) {
Dave Liu6b051042009-02-25 12:31:32 +0800555 add_lat = 4 - caslat;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800556 if ((add_lat + caslat) < 4) {
557 add_lat = 0;
558 }
559 }
560
561 /*
562 * Write Data Delay
563 * Historically 0x2 == 4/8 clock delay.
564 * Empirically, 0x3 == 6/8 clock delay is suggested for DDR I 266.
565 */
566 wr_data_delay = 2;
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200567#ifdef CONFIG_SYS_DDR_WRITE_DATA_DELAY
568 wr_data_delay = CONFIG_SYS_DDR_WRITE_DATA_DELAY;
569#endif
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800570
571 /*
572 * Write Latency
573 * Read to Precharge
574 * Minimum CKE Pulse Width.
575 * Four Activate Window
576 */
577 if (spd.mem_type == SPD_MEMTYPE_DDR) {
578 /*
579 * This is a lie. It should really be 1, but if it is
580 * set to 1, bits overlap into the old controller's
581 * otherwise unused ACSM field. If we leave it 0, then
582 * the HW will magically treat it as 1 for DDR 1. Oh Yea.
583 */
584 wr_lat = 0;
585
586 trtp_clk = 2; /* By the book. */
587 cke_min_clk = 1; /* By the book. */
588 four_act = 1; /* By the book. */
589
590 } else {
591 wr_lat = caslat - 1;
592
593 /* Convert SPD value from quarter nanos to picos. */
594 trtp_clk = picos_to_clk(spd.trtp * 250);
Dave Liu6b051042009-02-25 12:31:32 +0800595 if (trtp_clk < 2)
596 trtp_clk = 2;
597 trtp_clk += add_lat;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500598
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800599 cke_min_clk = 3; /* By the book. */
600 four_act = picos_to_clk(37500); /* By the book. 1k pages? */
601 }
602
603 /*
604 * Empirically set ~MCAS-to-preamble override for DDR 2.
Robert P. J. Daycbd618f2015-12-16 12:25:42 -0500605 * Your mileage will vary.
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800606 */
607 cpo = 0;
608 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200609#ifdef CONFIG_SYS_DDR_CPO
610 cpo = CONFIG_SYS_DDR_CPO;
611#else
Dave Liu939649a2008-01-10 23:09:33 +0800612 if (effective_data_rate == 266) {
613 cpo = 0x4; /* READ_LAT + 1/2 */
Dave Liu6b051042009-02-25 12:31:32 +0800614 } else if (effective_data_rate == 333) {
615 cpo = 0x6; /* READ_LAT + 1 */
616 } else if (effective_data_rate == 400) {
Dave Liub19ecd32007-09-18 12:37:57 +0800617 cpo = 0x7; /* READ_LAT + 5/4 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800618 } else {
619 /* Automatic calibration */
620 cpo = 0x1f;
621 }
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200622#endif
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800623 }
624
625 ddr->timing_cfg_2 = (0
626 | ((add_lat & 0x7) << 28) /* ADD_LAT */
627 | ((cpo & 0x1f) << 23) /* CPO */
628 | ((wr_lat & 0x7) << 19) /* WR_LAT */
629 | ((trtp_clk & 0x7) << 13) /* RD_TO_PRE */
630 | ((wr_data_delay & 0x7) << 10) /* WR_DATA_DELAY */
631 | ((cke_min_clk & 0x7) << 6) /* CKE_PLS */
632 | ((four_act & 0x1f) << 0) /* FOUR_ACT */
633 );
Eran Liberty9095d4a2005-07-28 10:08:46 -0500634
635 debug("DDR:timing_cfg_1=0x%08x\n", ddr->timing_cfg_1);
636 debug("DDR:timing_cfg_2=0x%08x\n", ddr->timing_cfg_2);
637
Dave Liuf5035922006-10-25 14:41:21 -0500638 /* Check DIMM data bus width */
Lee Nipper9f5d5762008-04-10 09:35:06 -0500639 if (spd.dataw_lsb < 64) {
Dave Liuc9fa31f2007-08-04 13:37:39 +0800640 if (spd.mem_type == SPD_MEMTYPE_DDR)
641 burstlen = 0x03; /* 32 bit data bus, burst len is 8 */
Dave Liu99e4d6c2007-08-10 15:48:59 +0800642 else
Dave Liuc9fa31f2007-08-04 13:37:39 +0800643 burstlen = 0x02; /* 32 bit data bus, burst len is 4 */
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500644 debug("\n DDR DIMM: data bus width is 32 bit");
Dave Liua46daea2006-11-03 19:33:44 -0600645 } else {
Dave Liuf5035922006-10-25 14:41:21 -0500646 burstlen = 0x02; /* Others act as 64 bit bus, burst len is 4 */
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500647 debug("\n DDR DIMM: data bus width is 64 bit");
Dave Liuf5035922006-10-25 14:41:21 -0500648 }
649
650 /* Is this an ECC DDR chip? */
Timur Tabiff0215a2006-11-28 12:09:35 -0600651 if (spd.config == 0x02)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500652 debug(" with ECC\n");
Timur Tabiff0215a2006-11-28 12:09:35 -0600653 else
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500654 debug(" without ECC\n");
Dave Liuf5035922006-10-25 14:41:21 -0500655
656 /* Burst length is always 4 for 64 bit data bus, 8 for 32 bit data bus,
657 Burst type is sequential
Eran Liberty9095d4a2005-07-28 10:08:46 -0500658 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800659 if (spd.mem_type == SPD_MEMTYPE_DDR) {
660 switch (caslat) {
Dave Liua46daea2006-11-03 19:33:44 -0600661 case 1:
662 ddr->sdram_mode = 0x50 | burstlen; /* CL=1.5 */
663 break;
664 case 2:
665 ddr->sdram_mode = 0x20 | burstlen; /* CL=2.0 */
666 break;
667 case 3:
668 ddr->sdram_mode = 0x60 | burstlen; /* CL=2.5 */
669 break;
670 case 4:
671 ddr->sdram_mode = 0x30 | burstlen; /* CL=3.0 */
672 break;
673 default:
674 printf("DDR:only CL 1.5, 2.0, 2.5, 3.0 is supported\n");
675 return 0;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800676 }
677 } else {
678 mode_odt_enable = 0x0; /* Default disabled */
679 if (odt_wr_cfg || odt_rd_cfg) {
680 /*
681 * Bits 6 and 2 in Extended MRS(1)
682 * Bit 2 == 0x04 == 75 Ohm, with 2 DIMM modules.
683 * Bit 6 == 0x40 == 150 Ohm, with 1 DIMM module.
684 */
685 mode_odt_enable = 0x40; /* 150 Ohm */
686 }
687
688 ddr->sdram_mode =
689 (0
690 | (1 << (16 + 10)) /* DQS Differential disable */
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200691#ifdef CONFIG_SYS_DDR_MODE_WEAK
692 | (1 << (16 + 1)) /* weak driver (~60%) */
693#endif
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800694 | (add_lat << (16 + 3)) /* Additive Latency in EMRS1 */
695 | (mode_odt_enable << 16) /* ODT Enable in EMRS1 */
Xie Xiaobo53484322007-03-09 19:08:25 +0800696 | ((twr_clk - 1) << 9) /* Write Recovery Autopre */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800697 | (caslat << 4) /* caslat */
698 | (burstlen << 0) /* Burst length */
699 );
Eran Liberty9095d4a2005-07-28 10:08:46 -0500700 }
701 debug("DDR:sdram_mode=0x%08x\n", ddr->sdram_mode);
702
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800703 /*
704 * Clear EMRS2 and EMRS3.
705 */
706 ddr->sdram_mode2 = 0;
707 debug("DDR: sdram_mode2 = 0x%08x\n", ddr->sdram_mode2);
708
Dave Liua46daea2006-11-03 19:33:44 -0600709 switch (spd.refresh) {
710 case 0x00:
711 case 0x80:
712 refresh_clk = picos_to_clk(15625000);
713 break;
714 case 0x01:
715 case 0x81:
716 refresh_clk = picos_to_clk(3900000);
717 break;
718 case 0x02:
719 case 0x82:
720 refresh_clk = picos_to_clk(7800000);
721 break;
722 case 0x03:
723 case 0x83:
724 refresh_clk = picos_to_clk(31300000);
725 break;
726 case 0x04:
727 case 0x84:
728 refresh_clk = picos_to_clk(62500000);
729 break;
730 case 0x05:
731 case 0x85:
732 refresh_clk = picos_to_clk(125000000);
733 break;
734 default:
735 refresh_clk = 0x512;
736 break;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500737 }
738
739 /*
740 * Set BSTOPRE to 0x100 for page mode
741 * If auto-charge is used, set BSTOPRE = 0
742 */
Dave Liua46daea2006-11-03 19:33:44 -0600743 ddr->sdram_interval = ((refresh_clk & 0x3fff) << 16) | 0x100;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500744 debug("DDR:sdram_interval=0x%08x\n", ddr->sdram_interval);
745
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800746 /*
747 * SDRAM Cfg 2
748 */
749 odt_cfg = 0;
Dave Liub19ecd32007-09-18 12:37:57 +0800750#ifndef CONFIG_NEVER_ASSERT_ODT_TO_CPU
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800751 if (odt_rd_cfg | odt_wr_cfg) {
752 odt_cfg = 0x2; /* ODT to IOs during reads */
753 }
Dave Liub19ecd32007-09-18 12:37:57 +0800754#endif
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800755 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
756 ddr->sdram_cfg2 = (0
757 | (0 << 26) /* True DQS */
758 | (odt_cfg << 21) /* ODT only read */
759 | (1 << 12) /* 1 refresh at a time */
760 );
761
762 debug("DDR: sdram_cfg2 = 0x%08x\n", ddr->sdram_cfg2);
763 }
764
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200765#ifdef CONFIG_SYS_DDR_SDRAM_CLK_CNTL /* Optional platform specific value */
766 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Paul Gortmaker2bd9f1b2007-01-16 11:38:14 -0500767#endif
Dave Liuf5035922006-10-25 14:41:21 -0500768 debug("DDR:sdram_clk_cntl=0x%08x\n", ddr->sdram_clk_cntl);
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100769
Mario Sixc463b6d2019-01-21 09:18:21 +0100770 sync();
771 isync();
Eran Liberty9095d4a2005-07-28 10:08:46 -0500772
Dave Liuf5035922006-10-25 14:41:21 -0500773 udelay(600);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500774
775 /*
Dave Liua46daea2006-11-03 19:33:44 -0600776 * Figure out the settings for the sdram_cfg register. Build up
777 * the value in 'sdram_cfg' before writing since the write into
Eran Liberty9095d4a2005-07-28 10:08:46 -0500778 * the register will actually enable the memory controller, and all
779 * settings must be done before enabling.
780 *
781 * sdram_cfg[0] = 1 (ddr sdram logic enable)
782 * sdram_cfg[1] = 1 (self-refresh-enable)
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800783 * sdram_cfg[5:7] = (SDRAM type = DDR SDRAM)
784 * 010 DDR 1 SDRAM
785 * 011 DDR 2 SDRAM
Dave Liuf5035922006-10-25 14:41:21 -0500786 * sdram_cfg[12] = 0 (32_BE =0 , 64 bit bus mode)
787 * sdram_cfg[13] = 0 (8_BE =0, 4-beat bursts)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500788 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800789 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500790 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR1;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800791 else
Kim Phillips69257392007-08-17 09:30:00 -0500792 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800793
794 sdram_cfg = (0
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500795 | SDRAM_CFG_MEM_EN /* DDR enable */
796 | SDRAM_CFG_SREN /* Self refresh */
797 | sdram_type /* SDRAM type */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800798 );
Eran Liberty9095d4a2005-07-28 10:08:46 -0500799
Dave Liuf5035922006-10-25 14:41:21 -0500800 /* sdram_cfg[3] = RD_EN - registered DIMM enable */
Timur Tabiff0215a2006-11-28 12:09:35 -0600801 if (spd.mod_attr & 0x02)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500802 sdram_cfg |= SDRAM_CFG_RD_EN;
Dave Liuf5035922006-10-25 14:41:21 -0500803
804 /* The DIMM is 32bit width */
Lee Nipper9f5d5762008-04-10 09:35:06 -0500805 if (spd.dataw_lsb < 64) {
Dave Liuc9fa31f2007-08-04 13:37:39 +0800806 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500807 sdram_cfg |= SDRAM_CFG_32_BE | SDRAM_CFG_8_BE;
Dave Liuc9fa31f2007-08-04 13:37:39 +0800808 if (spd.mem_type == SPD_MEMTYPE_DDR2)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500809 sdram_cfg |= SDRAM_CFG_32_BE;
Dave Liuc9fa31f2007-08-04 13:37:39 +0800810 }
Timur Tabiff0215a2006-11-28 12:09:35 -0600811
Dave Liuf5035922006-10-25 14:41:21 -0500812 ddrc_ecc_enable = 0;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500813
814#if defined(CONFIG_DDR_ECC)
Dave Liuf5035922006-10-25 14:41:21 -0500815 /* Enable ECC with sdram_cfg[2] */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500816 if (spd.config == 0x02) {
Dave Liuf5035922006-10-25 14:41:21 -0500817 sdram_cfg |= 0x20000000;
818 ddrc_ecc_enable = 1;
819 /* disable error detection */
820 ddr->err_disable = ~ECC_ERROR_ENABLE;
821 /* set single bit error threshold to maximum value,
822 * reset counter to zero */
823 ddr->err_sbe = (255 << ECC_ERROR_MAN_SBET_SHIFT) |
Dave Liua46daea2006-11-03 19:33:44 -0600824 (0 << ECC_ERROR_MAN_SBEC_SHIFT);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500825 }
Dave Liuf5035922006-10-25 14:41:21 -0500826
827 debug("DDR:err_disable=0x%08x\n", ddr->err_disable);
828 debug("DDR:err_sbe=0x%08x\n", ddr->err_sbe);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500829#endif
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500830 debug(" DDRC ECC mode: %s\n", ddrc_ecc_enable ? "ON":"OFF");
Eran Liberty9095d4a2005-07-28 10:08:46 -0500831
832#if defined(CONFIG_DDR_2T_TIMING)
833 /*
834 * Enable 2T timing by setting sdram_cfg[16].
835 */
Dave Liuf5035922006-10-25 14:41:21 -0500836 sdram_cfg |= SDRAM_CFG_2T_EN;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500837#endif
Dave Liuf5035922006-10-25 14:41:21 -0500838 /* Enable controller, and GO! */
839 ddr->sdram_cfg = sdram_cfg;
Mario Sixc463b6d2019-01-21 09:18:21 +0100840 sync();
841 isync();
Eran Liberty9095d4a2005-07-28 10:08:46 -0500842 udelay(500);
843
844 debug("DDR:sdram_cfg=0x%08x\n", ddr->sdram_cfg);
Rafal Jaworowski4a9b6aa2006-03-16 17:46:46 +0100845 return memsize; /*in MBytes*/
Eran Liberty9095d4a2005-07-28 10:08:46 -0500846}
Eran Liberty9095d4a2005-07-28 10:08:46 -0500847#endif /* CONFIG_SPD_EEPROM */
848
Peter Tysercb4731f2009-06-30 17:15:50 -0500849#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Mario Sixc463b6d2019-01-21 09:18:21 +0100850static inline u32 mftbu(void)
851{
852 u32 rval;
853
854 asm volatile("mftbu %0" : "=r" (rval));
855 return rval;
856}
857
858static inline u32 mftb(void)
859{
860 u32 rval;
861
862 asm volatile("mftb %0" : "=r" (rval));
863 return rval;
864}
865
Eran Liberty9095d4a2005-07-28 10:08:46 -0500866/*
Robert P. J. Daycbd618f2015-12-16 12:25:42 -0500867 * Use timebase counter, get_timer() is not available
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100868 * at this point of initialization yet.
Eran Liberty9095d4a2005-07-28 10:08:46 -0500869 */
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100870static __inline__ unsigned long get_tbms (void)
871{
872 unsigned long tbl;
873 unsigned long tbu1, tbu2;
874 unsigned long ms;
875 unsigned long long tmp;
876
877 ulong tbclk = get_tbclk();
878
879 /* get the timebase ticks */
880 do {
Mario Sixc463b6d2019-01-21 09:18:21 +0100881 tbu1 = mftbu();
882 tbl = mftb();
883 tbu2 = mftbu();
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100884 } while (tbu1 != tbu2);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500885
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100886 /* convert ticks to ms */
887 tmp = (unsigned long long)(tbu1);
888 tmp = (tmp << 32);
889 tmp += (unsigned long long)(tbl);
890 ms = tmp/(tbclk/1000);
891
892 return ms;
893}
894
895/*
896 * Initialize all of memory for ECC, then enable errors.
897 */
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100898void ddr_enable_ecc(unsigned int dram_size)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500899{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200900 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Dave Liuf5035922006-10-25 14:41:21 -0500901 volatile ddr83xx_t *ddr= &immap->ddr;
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100902 unsigned long t_start, t_end;
Dave Liu8c84e472006-11-02 18:05:50 -0600903 register u64 *p;
904 register uint size;
905 unsigned int pattern[2];
Peter Tyser6f33a352009-06-30 17:15:51 -0500906
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100907 icache_enable();
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100908 t_start = get_tbms();
Dave Liu8c84e472006-11-02 18:05:50 -0600909 pattern[0] = 0xdeadbeef;
910 pattern[1] = 0xdeadbeef;
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100911
Peter Tyser6f33a352009-06-30 17:15:51 -0500912#if defined(CONFIG_DDR_ECC_INIT_VIA_DMA)
913 dma_meminit(pattern[0], dram_size);
914#else
Dave Liu8c84e472006-11-02 18:05:50 -0600915 debug("ddr init: CPU FP write method\n");
916 size = dram_size;
917 for (p = 0; p < (u64*)(size); p++) {
918 ppcDWstore((u32*)p, pattern);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500919 }
Mario Sixc463b6d2019-01-21 09:18:21 +0100920 sync();
Jon Loeligerebc72242005-08-01 13:20:47 -0500921#endif
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100922
923 t_end = get_tbms();
924 icache_disable();
Eran Liberty9095d4a2005-07-28 10:08:46 -0500925
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100926 debug("\nREADY!!\n");
927 debug("ddr init duration: %ld ms\n", t_end - t_start);
928
929 /* Clear All ECC Errors */
930 if ((ddr->err_detect & ECC_ERROR_DETECT_MME) == ECC_ERROR_DETECT_MME)
931 ddr->err_detect |= ECC_ERROR_DETECT_MME;
932 if ((ddr->err_detect & ECC_ERROR_DETECT_MBE) == ECC_ERROR_DETECT_MBE)
933 ddr->err_detect |= ECC_ERROR_DETECT_MBE;
934 if ((ddr->err_detect & ECC_ERROR_DETECT_SBE) == ECC_ERROR_DETECT_SBE)
935 ddr->err_detect |= ECC_ERROR_DETECT_SBE;
936 if ((ddr->err_detect & ECC_ERROR_DETECT_MSE) == ECC_ERROR_DETECT_MSE)
937 ddr->err_detect |= ECC_ERROR_DETECT_MSE;
938
939 /* Disable ECC-Interrupts */
940 ddr->err_int_en &= ECC_ERR_INT_DISABLE;
941
942 /* Enable errors for ECC */
943 ddr->err_disable &= ECC_ERROR_ENABLE;
944
Mario Sixc463b6d2019-01-21 09:18:21 +0100945 sync();
946 isync();
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100947}
Eran Liberty9095d4a2005-07-28 10:08:46 -0500948#endif /* CONFIG_DDR_ECC */
Mario Six538b5752018-08-06 10:23:30 +0200949
950#endif /* !CONFIG_MPC83XX_SDRAM */