blob: 22506a5be5048ecb51ad47d53ec779d06dcde0bf [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 Glassa9dc0682019-12-28 10:44:59 -070017#include <time.h>
Simon Glassf5c208d2019-11-14 12:57:20 -070018#include <vsprintf.h>
Eran Liberty9095d4a2005-07-28 10:08:46 -050019#include <asm/processor.h>
Stefan Roese3fab9992009-12-08 09:10:04 +010020#include <asm/io.h>
Eran Liberty9095d4a2005-07-28 10:08:46 -050021#include <i2c.h>
22#include <spd.h>
23#include <asm/mmu.h>
24#include <spd_sdram.h>
25
Kim Phillipsdf6df6f2008-03-28 10:18:53 -050026DECLARE_GLOBAL_DATA_PTR;
27
Kim Phillips3b9c20f2007-08-16 22:52:48 -050028void board_add_ram_info(int use_default)
29{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020030 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Kim Phillips3b9c20f2007-08-16 22:52:48 -050031 volatile ddr83xx_t *ddr = &immap->ddr;
Kim Phillipsdf6df6f2008-03-28 10:18:53 -050032 char buf[32];
Kim Phillips3b9c20f2007-08-16 22:52:48 -050033
34 printf(" (DDR%d", ((ddr->sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK)
35 >> SDRAM_CFG_SDRAM_TYPE_SHIFT) - 1);
36
Mario Six9164bdd2019-01-21 09:17:25 +010037#if defined(CONFIG_ARCH_MPC8308) || defined(CONFIG_ARCH_MPC831X)
Joe Hershbergercc03b802011-10-11 23:57:29 -050038 if ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK) == SDRAM_CFG_DBW_16)
39 puts(", 16-bit");
40 else if ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK) == SDRAM_CFG_DBW_32)
41 puts(", 32-bit");
42 else
43 puts(", unknown width");
44#else
Kim Phillips3b9c20f2007-08-16 22:52:48 -050045 if (ddr->sdram_cfg & SDRAM_CFG_32_BE)
46 puts(", 32-bit");
47 else
48 puts(", 64-bit");
Joe Hershbergercc03b802011-10-11 23:57:29 -050049#endif
Kim Phillips3b9c20f2007-08-16 22:52:48 -050050
51 if (ddr->sdram_cfg & SDRAM_CFG_ECC_EN)
Kim Phillipsdf6df6f2008-03-28 10:18:53 -050052 puts(", ECC on");
Kim Phillips3b9c20f2007-08-16 22:52:48 -050053 else
Kim Phillipsdf6df6f2008-03-28 10:18:53 -050054 puts(", ECC off");
55
56 printf(", %s MHz)", strmhz(buf, gd->mem_clk));
Kim Phillips3b9c20f2007-08-16 22:52:48 -050057
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020058#if defined(CONFIG_SYS_LB_SDRAM) && defined(CONFIG_SYS_LBC_SDRAM_SIZE)
Kim Phillips3b9c20f2007-08-16 22:52:48 -050059 puts("\nSDRAM: ");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020060 print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, " (local bus)");
Kim Phillips3b9c20f2007-08-16 22:52:48 -050061#endif
62}
63
Eran Liberty9095d4a2005-07-28 10:08:46 -050064#ifdef CONFIG_SPD_EEPROM
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020065#ifndef CONFIG_SYS_READ_SPD
66#define CONFIG_SYS_READ_SPD i2c_read
Eran Liberty9095d4a2005-07-28 10:08:46 -050067#endif
Andre Schwarz10ea0af2011-04-14 14:54:05 +020068#ifndef SPD_EEPROM_OFFSET
69#define SPD_EEPROM_OFFSET 0
70#endif
71#ifndef SPD_EEPROM_ADDR_LEN
72#define SPD_EEPROM_ADDR_LEN 1
73#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -050074
Eran Liberty9095d4a2005-07-28 10:08:46 -050075/*
76 * Convert picoseconds into clock cycles (rounding up if needed).
77 */
Eran Liberty9095d4a2005-07-28 10:08:46 -050078int
79picos_to_clk(int picos)
80{
Kim Phillipsc02cf1e2008-03-28 10:18:40 -050081 unsigned int mem_bus_clk;
Eran Liberty9095d4a2005-07-28 10:08:46 -050082 int clks;
83
Kim Phillipsc02cf1e2008-03-28 10:18:40 -050084 mem_bus_clk = gd->mem_clk >> 1;
85 clks = picos / (1000000000 / (mem_bus_clk / 1000));
86 if (picos % (1000000000 / (mem_bus_clk / 1000)) != 0)
Dave Liuf5035922006-10-25 14:41:21 -050087 clks++;
Eran Liberty9095d4a2005-07-28 10:08:46 -050088
89 return clks;
90}
91
Marian Balakowicz6f6104d2006-03-14 16:23:35 +010092unsigned int banksize(unsigned char row_dens)
Eran Liberty9095d4a2005-07-28 10:08:46 -050093{
94 return ((row_dens >> 2) | ((row_dens & 3) << 6)) << 24;
95}
96
Marian Balakowicz6f6104d2006-03-14 16:23:35 +010097int read_spd(uint addr)
98{
99 return ((int) addr);
100}
101
Rafal Jaworowski4a9b6aa2006-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 Liberty9095d4a2005-07-28 10:08:46 -0500128{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200129 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Dave Liuf5035922006-10-25 14:41:21 -0500130 volatile ddr83xx_t *ddr = &immap->ddr;
131 volatile law83xx_t *ecm = &immap->sysconf.ddrlaw[0];
Eran Liberty9095d4a2005-07-28 10:08:46 -0500132 spd_eeprom_t spd;
Xie Xiaobo6149a5a2007-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 Phillips3b9c20f2007-08-16 22:52:48 -0500136 unsigned int sdram_type;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500137 unsigned int memsize;
138 unsigned int law_size;
Dave Liuf5035922006-10-25 14:41:21 -0500139 unsigned char caslat, caslat_ctrl;
Kim Phillips805b3c62011-11-15 22:59:51 +0000140 unsigned int trfc, trfc_clk, trfc_low;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800141 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 Liuf5035922006-10-25 14:41:21 -0500147 unsigned char burstlen;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800148 unsigned char odt_cfg, mode_odt_enable;
Dave Liuf5035922006-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 Xiaobo6149a5a2007-02-14 18:27:17 +0800153 unsigned int sdram_cfg;
Dave Liuf5035922006-10-25 14:41:21 -0500154 unsigned int ddrc_ecc_enable;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800155 unsigned int pvr = get_pvr();
Jon Loeligerebc72242005-08-01 13:20:47 -0500156
Stefan Roese3fab9992009-12-08 09:10:04 +0100157 /*
158 * First disable the memory controller (could be enabled
159 * by the debugger)
160 */
161 clrsetbits_be32(&ddr->sdram_cfg, SDRAM_CFG_MEM_EN, 0);
162 sync();
163 isync();
164
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100165 /* Read SPD parameters with I2C */
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200166 CONFIG_SYS_READ_SPD(SPD_EEPROM_ADDRESS, SPD_EEPROM_OFFSET,
167 SPD_EEPROM_ADDR_LEN, (uchar *) &spd, sizeof(spd));
Rafal Jaworowski4a9b6aa2006-03-16 17:46:46 +0100168#ifdef SPD_DEBUG
169 spd_debug(&spd);
170#endif
Dave Liuf5035922006-10-25 14:41:21 -0500171 /* Check the memory type */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800172 if (spd.mem_type != SPD_MEMTYPE_DDR && spd.mem_type != SPD_MEMTYPE_DDR2) {
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500173 debug("DDR: Module mem type is %02X\n", spd.mem_type);
Dave Liuf5035922006-10-25 14:41:21 -0500174 return 0;
175 }
176
177 /* Check the number of physical bank */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800178 if (spd.mem_type == SPD_MEMTYPE_DDR) {
179 n_ranks = spd.nrows;
180 } else {
181 n_ranks = (spd.nrows & 0x7) + 1;
182 }
183
184 if (n_ranks > 2) {
185 printf("DDR: The number of physical bank is %02X\n", n_ranks);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500186 return 0;
187 }
188
Dave Liuf5035922006-10-25 14:41:21 -0500189 /* Check if the number of row of the module is in the range of DDRC */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800190 if (spd.nrow_addr < 12 || spd.nrow_addr > 15) {
Dave Liuf5035922006-10-25 14:41:21 -0500191 printf("DDR: Row number is out of range of DDRC, row=%02X\n",
192 spd.nrow_addr);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500193 return 0;
194 }
195
Dave Liuf5035922006-10-25 14:41:21 -0500196 /* Check if the number of col of the module is in the range of DDRC */
197 if (spd.ncol_addr < 8 || spd.ncol_addr > 11) {
198 printf("DDR: Col number is out of range of DDRC, col=%02X\n",
199 spd.ncol_addr);
200 return 0;
201 }
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800202
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200203#ifdef CONFIG_SYS_DDRCDR_VALUE
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800204 /*
205 * Adjust DDR II IO voltage biasing. It just makes it work.
206 */
207 if(spd.mem_type == SPD_MEMTYPE_DDR2) {
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200208 immap->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800209 }
Dave Liub19ecd32007-09-18 12:37:57 +0800210 udelay(50000);
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800211#endif
212
213 /*
214 * ODT configuration recommendation from DDR Controller Chapter.
215 */
216 odt_rd_cfg = 0; /* Never assert ODT */
217 odt_wr_cfg = 0; /* Never assert ODT */
218 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
219 odt_wr_cfg = 1; /* Assert ODT on writes to CSn */
220 }
221
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100222 /* Setup DDR chip select register */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200223#ifdef CONFIG_SYS_83XX_DDR_USES_CS0
Dave Liua46daea2006-11-03 19:33:44 -0600224 ddr->csbnds[0].csbnds = (banksize(spd.row_dens) >> 24) - 1;
225 ddr->cs_config[0] = ( 1 << 31
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800226 | (odt_rd_cfg << 20)
227 | (odt_wr_cfg << 16)
Jerry Van Barena07888b2009-03-13 11:40:10 -0400228 | ((spd.nbanks == 8 ? 1 : 0) << 14)
229 | ((spd.nrow_addr - 12) << 8)
Dave Liua46daea2006-11-03 19:33:44 -0600230 | (spd.ncol_addr - 8) );
231 debug("\n");
232 debug("cs0_bnds = 0x%08x\n",ddr->csbnds[0].csbnds);
233 debug("cs0_config = 0x%08x\n",ddr->cs_config[0]);
234
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800235 if (n_ranks == 2) {
Dave Liua46daea2006-11-03 19:33:44 -0600236 ddr->csbnds[1].csbnds = ( (banksize(spd.row_dens) >> 8)
237 | ((banksize(spd.row_dens) >> 23) - 1) );
238 ddr->cs_config[1] = ( 1<<31
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800239 | (odt_rd_cfg << 20)
240 | (odt_wr_cfg << 16)
Jerry Van Barena07888b2009-03-13 11:40:10 -0400241 | ((spd.nbanks == 8 ? 1 : 0) << 14)
242 | ((spd.nrow_addr - 12) << 8)
243 | (spd.ncol_addr - 8) );
Dave Liua46daea2006-11-03 19:33:44 -0600244 debug("cs1_bnds = 0x%08x\n",ddr->csbnds[1].csbnds);
245 debug("cs1_config = 0x%08x\n",ddr->cs_config[1]);
246 }
247
248#else
Eran Liberty9095d4a2005-07-28 10:08:46 -0500249 ddr->csbnds[2].csbnds = (banksize(spd.row_dens) >> 24) - 1;
250 ddr->cs_config[2] = ( 1 << 31
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800251 | (odt_rd_cfg << 20)
252 | (odt_wr_cfg << 16)
Jerry Van Barena07888b2009-03-13 11:40:10 -0400253 | ((spd.nbanks == 8 ? 1 : 0) << 14)
254 | ((spd.nrow_addr - 12) << 8)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500255 | (spd.ncol_addr - 8) );
256 debug("\n");
257 debug("cs2_bnds = 0x%08x\n",ddr->csbnds[2].csbnds);
258 debug("cs2_config = 0x%08x\n",ddr->cs_config[2]);
Jon Loeligerebc72242005-08-01 13:20:47 -0500259
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800260 if (n_ranks == 2) {
Eran Liberty9095d4a2005-07-28 10:08:46 -0500261 ddr->csbnds[3].csbnds = ( (banksize(spd.row_dens) >> 8)
262 | ((banksize(spd.row_dens) >> 23) - 1) );
263 ddr->cs_config[3] = ( 1<<31
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800264 | (odt_rd_cfg << 20)
265 | (odt_wr_cfg << 16)
Jerry Van Barena07888b2009-03-13 11:40:10 -0400266 | ((spd.nbanks == 8 ? 1 : 0) << 14)
267 | ((spd.nrow_addr - 12) << 8)
268 | (spd.ncol_addr - 8) );
Eran Liberty9095d4a2005-07-28 10:08:46 -0500269 debug("cs3_bnds = 0x%08x\n",ddr->csbnds[3].csbnds);
270 debug("cs3_config = 0x%08x\n",ddr->cs_config[3]);
271 }
Timur Tabi054838e2006-10-31 18:44:42 -0600272#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -0500273
Eran Liberty9095d4a2005-07-28 10:08:46 -0500274 /*
275 * Figure out memory size in Megabytes.
276 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800277 memsize = n_ranks * banksize(spd.row_dens) / 0x100000;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500278
279 /*
280 * First supported LAW size is 16M, at LAWAR_SIZE_16M == 23.
281 */
282 law_size = 19 + __ilog2(memsize);
283
284 /*
285 * Set up LAWBAR for all of DDR.
286 */
Mario Six805cac12019-01-21 09:18:16 +0100287 ecm->bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500288 ecm->ar = (LAWAR_EN | LAWAR_TRGT_IF_DDR | (LAWAR_SIZE & law_size));
289 debug("DDR:bar=0x%08x\n", ecm->bar);
290 debug("DDR:ar=0x%08x\n", ecm->ar);
291
292 /*
Dave Liuf5035922006-10-25 14:41:21 -0500293 * Find the largest CAS by locating the highest 1 bit
294 * in the spd.cas_lat field. Translate it to a DDR
295 * controller field value:
296 *
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800297 * CAS Lat DDR I DDR II Ctrl
298 * Clocks SPD Bit SPD Bit Value
299 * ------- ------- ------- -----
300 * 1.0 0 0001
301 * 1.5 1 0010
302 * 2.0 2 2 0011
303 * 2.5 3 0100
304 * 3.0 4 3 0101
305 * 3.5 5 0110
306 * 4.0 6 4 0111
307 * 4.5 1000
308 * 5.0 5 1001
Eran Liberty9095d4a2005-07-28 10:08:46 -0500309 */
Dave Liuf5035922006-10-25 14:41:21 -0500310 caslat = __ilog2(spd.cas_lat);
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800311 if ((spd.mem_type == SPD_MEMTYPE_DDR)
312 && (caslat > 6)) {
313 printf("DDR I: Invalid SPD CAS Latency: 0x%x.\n", spd.cas_lat);
314 return 0;
315 } else if (spd.mem_type == SPD_MEMTYPE_DDR2
316 && (caslat < 2 || caslat > 5)) {
317 printf("DDR II: Invalid SPD CAS Latency: 0x%x.\n",
318 spd.cas_lat);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500319 return 0;
320 }
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800321 debug("DDR: caslat SPD bit is %d\n", caslat);
322
Dave Liuf5035922006-10-25 14:41:21 -0500323 max_bus_clk = 1000 *10 / (((spd.clk_cycle & 0xF0) >> 4) * 10
324 + (spd.clk_cycle & 0x0f));
325 max_data_rate = max_bus_clk * 2;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500326
Wolfgang Denkaf0501a2008-10-19 02:35:50 +0200327 debug("DDR:Module maximum data rate is: %d MHz\n", max_data_rate);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500328
Kim Phillipsc02cf1e2008-03-28 10:18:40 -0500329 ddrc_clk = gd->mem_clk / 1000000;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800330 effective_data_rate = 0;
Dave Liuf5035922006-10-25 14:41:21 -0500331
Dave Liu6b051042009-02-25 12:31:32 +0800332 if (max_data_rate >= 460) { /* it is DDR2-800, 667, 533 */
333 if (spd.cas_lat & 0x08)
334 caslat = 3;
335 else
336 caslat = 4;
337 if (ddrc_clk <= 460 && ddrc_clk > 350)
338 effective_data_rate = 400;
339 else if (ddrc_clk <=350 && ddrc_clk > 280)
340 effective_data_rate = 333;
341 else if (ddrc_clk <= 280 && ddrc_clk > 230)
342 effective_data_rate = 266;
343 else
344 effective_data_rate = 200;
345 } else if (max_data_rate >= 390 && max_data_rate < 460) { /* it is DDR 400 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800346 if (ddrc_clk <= 460 && ddrc_clk > 350) {
347 /* DDR controller clk at 350~460 */
Dave Liua46daea2006-11-03 19:33:44 -0600348 effective_data_rate = 400; /* 5ns */
349 caslat = caslat;
350 } else if (ddrc_clk <= 350 && ddrc_clk > 280) {
351 /* DDR controller clk at 280~350 */
352 effective_data_rate = 333; /* 6ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600353 if (spd.clk_cycle2 == 0x60)
Dave Liua46daea2006-11-03 19:33:44 -0600354 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600355 else
Dave Liua46daea2006-11-03 19:33:44 -0600356 caslat = caslat;
Dave Liua46daea2006-11-03 19:33:44 -0600357 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
358 /* DDR controller clk at 230~280 */
359 effective_data_rate = 266; /* 7.5ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600360 if (spd.clk_cycle3 == 0x75)
Dave Liua46daea2006-11-03 19:33:44 -0600361 caslat = caslat - 2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800362 else if (spd.clk_cycle2 == 0x75)
Dave Liua46daea2006-11-03 19:33:44 -0600363 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600364 else
Dave Liua46daea2006-11-03 19:33:44 -0600365 caslat = caslat;
Dave Liua46daea2006-11-03 19:33:44 -0600366 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
367 /* DDR controller clk at 90~230 */
368 effective_data_rate = 200; /* 10ns */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800369 if (spd.clk_cycle3 == 0xa0)
Dave Liua46daea2006-11-03 19:33:44 -0600370 caslat = caslat - 2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800371 else if (spd.clk_cycle2 == 0xa0)
Dave Liua46daea2006-11-03 19:33:44 -0600372 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600373 else
Dave Liua46daea2006-11-03 19:33:44 -0600374 caslat = caslat;
Dave Liua46daea2006-11-03 19:33:44 -0600375 }
Dave Liuf5035922006-10-25 14:41:21 -0500376 } else if (max_data_rate >= 323) { /* it is DDR 333 */
377 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liua46daea2006-11-03 19:33:44 -0600378 /* DDR controller clk at 280~350 */
Dave Liuf5035922006-10-25 14:41:21 -0500379 effective_data_rate = 333; /* 6ns */
380 caslat = caslat;
381 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liua46daea2006-11-03 19:33:44 -0600382 /* DDR controller clk at 230~280 */
383 effective_data_rate = 266; /* 7.5ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600384 if (spd.clk_cycle2 == 0x75)
Dave Liuf5035922006-10-25 14:41:21 -0500385 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600386 else
Dave Liua46daea2006-11-03 19:33:44 -0600387 caslat = caslat;
Dave Liuf5035922006-10-25 14:41:21 -0500388 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liua46daea2006-11-03 19:33:44 -0600389 /* DDR controller clk at 90~230 */
390 effective_data_rate = 200; /* 10ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600391 if (spd.clk_cycle3 == 0xa0)
Dave Liuf5035922006-10-25 14:41:21 -0500392 caslat = caslat - 2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800393 else if (spd.clk_cycle2 == 0xa0)
Dave Liua46daea2006-11-03 19:33:44 -0600394 caslat = caslat - 1;
Timur Tabiff0215a2006-11-28 12:09:35 -0600395 else
Dave Liua46daea2006-11-03 19:33:44 -0600396 caslat = caslat;
Dave Liuf5035922006-10-25 14:41:21 -0500397 }
398 } else if (max_data_rate >= 256) { /* it is DDR 266 */
399 if (ddrc_clk <= 350 && ddrc_clk > 280) {
Dave Liua46daea2006-11-03 19:33:44 -0600400 /* DDR controller clk at 280~350 */
Dave Liuf5035922006-10-25 14:41:21 -0500401 printf("DDR: DDR controller freq is more than "
402 "max data rate of the module\n");
403 return 0;
404 } else if (ddrc_clk <= 280 && ddrc_clk > 230) {
Dave Liua46daea2006-11-03 19:33:44 -0600405 /* DDR controller clk at 230~280 */
Dave Liuf5035922006-10-25 14:41:21 -0500406 effective_data_rate = 266; /* 7.5ns */
407 caslat = caslat;
408 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liua46daea2006-11-03 19:33:44 -0600409 /* DDR controller clk at 90~230 */
410 effective_data_rate = 200; /* 10ns */
Timur Tabiff0215a2006-11-28 12:09:35 -0600411 if (spd.clk_cycle2 == 0xa0)
Dave Liuf5035922006-10-25 14:41:21 -0500412 caslat = caslat - 1;
Dave Liuf5035922006-10-25 14:41:21 -0500413 }
414 } else if (max_data_rate >= 190) { /* it is DDR 200 */
415 if (ddrc_clk <= 350 && ddrc_clk > 230) {
Dave Liua46daea2006-11-03 19:33:44 -0600416 /* DDR controller clk at 230~350 */
Dave Liuf5035922006-10-25 14:41:21 -0500417 printf("DDR: DDR controller freq is more than "
418 "max data rate of the module\n");
419 return 0;
420 } else if (ddrc_clk <= 230 && ddrc_clk > 90) {
Dave Liua46daea2006-11-03 19:33:44 -0600421 /* DDR controller clk at 90~230 */
Dave Liuf5035922006-10-25 14:41:21 -0500422 effective_data_rate = 200; /* 10ns */
423 caslat = caslat;
424 }
Timur Tabiefec6302006-10-31 18:13:36 -0600425 }
426
Wolfgang Denkaf0501a2008-10-19 02:35:50 +0200427 debug("DDR:Effective data rate is: %dMHz\n", effective_data_rate);
Dave Liua46daea2006-11-03 19:33:44 -0600428 debug("DDR:The MSB 1 of CAS Latency is: %d\n", caslat);
Timur Tabiefec6302006-10-31 18:13:36 -0600429
Dave Liua46daea2006-11-03 19:33:44 -0600430 /*
431 * Errata DDR6 work around: input enable 2 cycles earlier.
Mario Six0344f5e2019-01-21 09:17:27 +0100432 * including MPC834X Rev1.0/1.1 and MPC8360 Rev1.1/1.2.
Dave Liua46daea2006-11-03 19:33:44 -0600433 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800434 if(PVR_MAJ(pvr) <= 1 && spd.mem_type == SPD_MEMTYPE_DDR){
435 if (caslat == 2)
436 ddr->debug_reg = 0x201c0000; /* CL=2 */
437 else if (caslat == 3)
438 ddr->debug_reg = 0x202c0000; /* CL=2.5 */
439 else if (caslat == 4)
440 ddr->debug_reg = 0x202c0000; /* CL=3.0 */
Timur Tabiff0215a2006-11-28 12:09:35 -0600441
Mario Sixc463b6d2019-01-21 09:18:21 +0100442 sync();
Timur Tabiefec6302006-10-31 18:13:36 -0600443
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800444 debug("Errata DDR6 (debug_reg=0x%08x)\n", ddr->debug_reg);
445 }
Eran Liberty9095d4a2005-07-28 10:08:46 -0500446
447 /*
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800448 * Convert caslat clocks to DDR controller value.
449 * Force caslat_ctrl to be DDR Controller field-sized.
450 */
451 if (spd.mem_type == SPD_MEMTYPE_DDR) {
452 caslat_ctrl = (caslat + 1) & 0x07;
453 } else {
454 caslat_ctrl = (2 * caslat - 1) & 0x0f;
455 }
456
457 debug("DDR: effective data rate is %d MHz\n", effective_data_rate);
458 debug("DDR: caslat SPD bit is %d, controller field is 0x%x\n",
459 caslat, caslat_ctrl);
460
461 /*
462 * Timing Config 0.
463 * Avoid writing for DDR I.
464 */
465 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
466 unsigned char taxpd_clk = 8; /* By the book. */
467 unsigned char tmrd_clk = 2; /* By the book. */
468 unsigned char act_pd_exit = 2; /* Empirical? */
469 unsigned char pre_pd_exit = 6; /* Empirical? */
470
471 ddr->timing_cfg_0 = (0
472 | ((act_pd_exit & 0x7) << 20) /* ACT_PD_EXIT */
473 | ((pre_pd_exit & 0x7) << 16) /* PRE_PD_EXIT */
474 | ((taxpd_clk & 0xf) << 8) /* ODT_PD_EXIT */
475 | ((tmrd_clk & 0xf) << 0) /* MRS_CYC */
476 );
477 debug("DDR: timing_cfg_0 = 0x%08x\n", ddr->timing_cfg_0);
478 }
479
480 /*
481 * For DDR I, WRREC(Twr) and WRTORD(Twtr) are not in SPD,
482 * use conservative value.
483 * For DDR II, they are bytes 36 and 37, in quarter nanos.
484 */
485
486 if (spd.mem_type == SPD_MEMTYPE_DDR) {
487 twr_clk = 3; /* Clocks */
488 twtr_clk = 1; /* Clocks */
489 } else {
490 twr_clk = picos_to_clk(spd.twr * 250);
491 twtr_clk = picos_to_clk(spd.twtr * 250);
Dave Liu6b051042009-02-25 12:31:32 +0800492 if (twtr_clk < 2)
493 twtr_clk = 2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800494 }
495
496 /*
497 * Calculate Trfc, in picos.
498 * DDR I: Byte 42 straight up in ns.
499 * DDR II: Byte 40 and 42 swizzled some, in ns.
500 */
501 if (spd.mem_type == SPD_MEMTYPE_DDR) {
502 trfc = spd.trfc * 1000; /* up to ps */
503 } else {
504 unsigned int byte40_table_ps[8] = {
505 0,
506 250,
507 330,
508 500,
509 660,
510 750,
511 0,
512 0
513 };
514
515 trfc = (((spd.trctrfc_ext & 0x1) * 256) + spd.trfc) * 1000
516 + byte40_table_ps[(spd.trctrfc_ext >> 1) & 0x7];
517 }
518 trfc_clk = picos_to_clk(trfc);
519
520 /*
521 * Trcd, Byte 29, from quarter nanos to ps and clocks.
Eran Liberty9095d4a2005-07-28 10:08:46 -0500522 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800523 trcd_clk = picos_to_clk(spd.trcd * 250) & 0x7;
524
525 /*
526 * Convert trfc_clk to DDR controller fields. DDR I should
527 * fit in the REFREC field (16-19) of TIMING_CFG_1, but the
528 * 83xx controller has an extended REFREC field of three bits.
529 * The controller automatically adds 8 clocks to this value,
530 * so preadjust it down 8 first before splitting it up.
531 */
532 trfc_low = (trfc_clk - 8) & 0xf;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500533
534 ddr->timing_cfg_1 =
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800535 (((picos_to_clk(spd.trp * 250) & 0x07) << 28 ) | /* PRETOACT */
536 ((picos_to_clk(spd.tras * 1000) & 0x0f ) << 24 ) | /* ACTTOPRE */
Wolfgang Denka1be4762008-05-20 16:00:29 +0200537 (trcd_clk << 20 ) | /* ACTTORW */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800538 (caslat_ctrl << 16 ) | /* CASLAT */
539 (trfc_low << 12 ) | /* REFEC */
540 ((twr_clk & 0x07) << 8) | /* WRRREC */
541 ((picos_to_clk(spd.trrd * 250) & 0x07) << 4) | /* ACTTOACT */
542 ((twtr_clk & 0x07) << 0) /* WRTORD */
543 );
544
545 /*
546 * Additive Latency
547 * For DDR I, 0.
548 * For DDR II, with ODT enabled, use "a value" less than ACTTORW,
549 * which comes from Trcd, and also note that:
550 * add_lat + caslat must be >= 4
551 */
552 add_lat = 0;
553 if (spd.mem_type == SPD_MEMTYPE_DDR2
554 && (odt_wr_cfg || odt_rd_cfg)
555 && (caslat < 4)) {
Dave Liu6b051042009-02-25 12:31:32 +0800556 add_lat = 4 - caslat;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800557 if ((add_lat + caslat) < 4) {
558 add_lat = 0;
559 }
560 }
561
562 /*
563 * Write Data Delay
564 * Historically 0x2 == 4/8 clock delay.
565 * Empirically, 0x3 == 6/8 clock delay is suggested for DDR I 266.
566 */
567 wr_data_delay = 2;
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200568#ifdef CONFIG_SYS_DDR_WRITE_DATA_DELAY
569 wr_data_delay = CONFIG_SYS_DDR_WRITE_DATA_DELAY;
570#endif
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800571
572 /*
573 * Write Latency
574 * Read to Precharge
575 * Minimum CKE Pulse Width.
576 * Four Activate Window
577 */
578 if (spd.mem_type == SPD_MEMTYPE_DDR) {
579 /*
580 * This is a lie. It should really be 1, but if it is
581 * set to 1, bits overlap into the old controller's
582 * otherwise unused ACSM field. If we leave it 0, then
583 * the HW will magically treat it as 1 for DDR 1. Oh Yea.
584 */
585 wr_lat = 0;
586
587 trtp_clk = 2; /* By the book. */
588 cke_min_clk = 1; /* By the book. */
589 four_act = 1; /* By the book. */
590
591 } else {
592 wr_lat = caslat - 1;
593
594 /* Convert SPD value from quarter nanos to picos. */
595 trtp_clk = picos_to_clk(spd.trtp * 250);
Dave Liu6b051042009-02-25 12:31:32 +0800596 if (trtp_clk < 2)
597 trtp_clk = 2;
598 trtp_clk += add_lat;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500599
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800600 cke_min_clk = 3; /* By the book. */
601 four_act = picos_to_clk(37500); /* By the book. 1k pages? */
602 }
603
604 /*
605 * Empirically set ~MCAS-to-preamble override for DDR 2.
Robert P. J. Daycbd618f2015-12-16 12:25:42 -0500606 * Your mileage will vary.
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800607 */
608 cpo = 0;
609 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200610#ifdef CONFIG_SYS_DDR_CPO
611 cpo = CONFIG_SYS_DDR_CPO;
612#else
Dave Liu939649a2008-01-10 23:09:33 +0800613 if (effective_data_rate == 266) {
614 cpo = 0x4; /* READ_LAT + 1/2 */
Dave Liu6b051042009-02-25 12:31:32 +0800615 } else if (effective_data_rate == 333) {
616 cpo = 0x6; /* READ_LAT + 1 */
617 } else if (effective_data_rate == 400) {
Dave Liub19ecd32007-09-18 12:37:57 +0800618 cpo = 0x7; /* READ_LAT + 5/4 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800619 } else {
620 /* Automatic calibration */
621 cpo = 0x1f;
622 }
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200623#endif
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800624 }
625
626 ddr->timing_cfg_2 = (0
627 | ((add_lat & 0x7) << 28) /* ADD_LAT */
628 | ((cpo & 0x1f) << 23) /* CPO */
629 | ((wr_lat & 0x7) << 19) /* WR_LAT */
630 | ((trtp_clk & 0x7) << 13) /* RD_TO_PRE */
631 | ((wr_data_delay & 0x7) << 10) /* WR_DATA_DELAY */
632 | ((cke_min_clk & 0x7) << 6) /* CKE_PLS */
633 | ((four_act & 0x1f) << 0) /* FOUR_ACT */
634 );
Eran Liberty9095d4a2005-07-28 10:08:46 -0500635
636 debug("DDR:timing_cfg_1=0x%08x\n", ddr->timing_cfg_1);
637 debug("DDR:timing_cfg_2=0x%08x\n", ddr->timing_cfg_2);
638
Dave Liuf5035922006-10-25 14:41:21 -0500639 /* Check DIMM data bus width */
Lee Nipper9f5d5762008-04-10 09:35:06 -0500640 if (spd.dataw_lsb < 64) {
Dave Liuc9fa31f2007-08-04 13:37:39 +0800641 if (spd.mem_type == SPD_MEMTYPE_DDR)
642 burstlen = 0x03; /* 32 bit data bus, burst len is 8 */
Dave Liu99e4d6c2007-08-10 15:48:59 +0800643 else
Dave Liuc9fa31f2007-08-04 13:37:39 +0800644 burstlen = 0x02; /* 32 bit data bus, burst len is 4 */
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500645 debug("\n DDR DIMM: data bus width is 32 bit");
Dave Liua46daea2006-11-03 19:33:44 -0600646 } else {
Dave Liuf5035922006-10-25 14:41:21 -0500647 burstlen = 0x02; /* Others act as 64 bit bus, burst len is 4 */
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500648 debug("\n DDR DIMM: data bus width is 64 bit");
Dave Liuf5035922006-10-25 14:41:21 -0500649 }
650
651 /* Is this an ECC DDR chip? */
Timur Tabiff0215a2006-11-28 12:09:35 -0600652 if (spd.config == 0x02)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500653 debug(" with ECC\n");
Timur Tabiff0215a2006-11-28 12:09:35 -0600654 else
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500655 debug(" without ECC\n");
Dave Liuf5035922006-10-25 14:41:21 -0500656
657 /* Burst length is always 4 for 64 bit data bus, 8 for 32 bit data bus,
658 Burst type is sequential
Eran Liberty9095d4a2005-07-28 10:08:46 -0500659 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800660 if (spd.mem_type == SPD_MEMTYPE_DDR) {
661 switch (caslat) {
Dave Liua46daea2006-11-03 19:33:44 -0600662 case 1:
663 ddr->sdram_mode = 0x50 | burstlen; /* CL=1.5 */
664 break;
665 case 2:
666 ddr->sdram_mode = 0x20 | burstlen; /* CL=2.0 */
667 break;
668 case 3:
669 ddr->sdram_mode = 0x60 | burstlen; /* CL=2.5 */
670 break;
671 case 4:
672 ddr->sdram_mode = 0x30 | burstlen; /* CL=3.0 */
673 break;
674 default:
675 printf("DDR:only CL 1.5, 2.0, 2.5, 3.0 is supported\n");
676 return 0;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800677 }
678 } else {
679 mode_odt_enable = 0x0; /* Default disabled */
680 if (odt_wr_cfg || odt_rd_cfg) {
681 /*
682 * Bits 6 and 2 in Extended MRS(1)
683 * Bit 2 == 0x04 == 75 Ohm, with 2 DIMM modules.
684 * Bit 6 == 0x40 == 150 Ohm, with 1 DIMM module.
685 */
686 mode_odt_enable = 0x40; /* 150 Ohm */
687 }
688
689 ddr->sdram_mode =
690 (0
691 | (1 << (16 + 10)) /* DQS Differential disable */
Andre Schwarz10ea0af2011-04-14 14:54:05 +0200692#ifdef CONFIG_SYS_DDR_MODE_WEAK
693 | (1 << (16 + 1)) /* weak driver (~60%) */
694#endif
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800695 | (add_lat << (16 + 3)) /* Additive Latency in EMRS1 */
696 | (mode_odt_enable << 16) /* ODT Enable in EMRS1 */
Xie Xiaobo53484322007-03-09 19:08:25 +0800697 | ((twr_clk - 1) << 9) /* Write Recovery Autopre */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800698 | (caslat << 4) /* caslat */
699 | (burstlen << 0) /* Burst length */
700 );
Eran Liberty9095d4a2005-07-28 10:08:46 -0500701 }
702 debug("DDR:sdram_mode=0x%08x\n", ddr->sdram_mode);
703
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800704 /*
705 * Clear EMRS2 and EMRS3.
706 */
707 ddr->sdram_mode2 = 0;
708 debug("DDR: sdram_mode2 = 0x%08x\n", ddr->sdram_mode2);
709
Dave Liua46daea2006-11-03 19:33:44 -0600710 switch (spd.refresh) {
711 case 0x00:
712 case 0x80:
713 refresh_clk = picos_to_clk(15625000);
714 break;
715 case 0x01:
716 case 0x81:
717 refresh_clk = picos_to_clk(3900000);
718 break;
719 case 0x02:
720 case 0x82:
721 refresh_clk = picos_to_clk(7800000);
722 break;
723 case 0x03:
724 case 0x83:
725 refresh_clk = picos_to_clk(31300000);
726 break;
727 case 0x04:
728 case 0x84:
729 refresh_clk = picos_to_clk(62500000);
730 break;
731 case 0x05:
732 case 0x85:
733 refresh_clk = picos_to_clk(125000000);
734 break;
735 default:
736 refresh_clk = 0x512;
737 break;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500738 }
739
740 /*
741 * Set BSTOPRE to 0x100 for page mode
742 * If auto-charge is used, set BSTOPRE = 0
743 */
Dave Liua46daea2006-11-03 19:33:44 -0600744 ddr->sdram_interval = ((refresh_clk & 0x3fff) << 16) | 0x100;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500745 debug("DDR:sdram_interval=0x%08x\n", ddr->sdram_interval);
746
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800747 /*
748 * SDRAM Cfg 2
749 */
750 odt_cfg = 0;
Dave Liub19ecd32007-09-18 12:37:57 +0800751#ifndef CONFIG_NEVER_ASSERT_ODT_TO_CPU
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800752 if (odt_rd_cfg | odt_wr_cfg) {
753 odt_cfg = 0x2; /* ODT to IOs during reads */
754 }
Dave Liub19ecd32007-09-18 12:37:57 +0800755#endif
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800756 if (spd.mem_type == SPD_MEMTYPE_DDR2) {
757 ddr->sdram_cfg2 = (0
758 | (0 << 26) /* True DQS */
759 | (odt_cfg << 21) /* ODT only read */
760 | (1 << 12) /* 1 refresh at a time */
761 );
762
763 debug("DDR: sdram_cfg2 = 0x%08x\n", ddr->sdram_cfg2);
764 }
765
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200766#ifdef CONFIG_SYS_DDR_SDRAM_CLK_CNTL /* Optional platform specific value */
767 ddr->sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
Paul Gortmaker2bd9f1b2007-01-16 11:38:14 -0500768#endif
Dave Liuf5035922006-10-25 14:41:21 -0500769 debug("DDR:sdram_clk_cntl=0x%08x\n", ddr->sdram_clk_cntl);
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100770
Mario Sixc463b6d2019-01-21 09:18:21 +0100771 sync();
772 isync();
Eran Liberty9095d4a2005-07-28 10:08:46 -0500773
Dave Liuf5035922006-10-25 14:41:21 -0500774 udelay(600);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500775
776 /*
Dave Liua46daea2006-11-03 19:33:44 -0600777 * Figure out the settings for the sdram_cfg register. Build up
778 * the value in 'sdram_cfg' before writing since the write into
Eran Liberty9095d4a2005-07-28 10:08:46 -0500779 * the register will actually enable the memory controller, and all
780 * settings must be done before enabling.
781 *
782 * sdram_cfg[0] = 1 (ddr sdram logic enable)
783 * sdram_cfg[1] = 1 (self-refresh-enable)
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800784 * sdram_cfg[5:7] = (SDRAM type = DDR SDRAM)
785 * 010 DDR 1 SDRAM
786 * 011 DDR 2 SDRAM
Dave Liuf5035922006-10-25 14:41:21 -0500787 * sdram_cfg[12] = 0 (32_BE =0 , 64 bit bus mode)
788 * sdram_cfg[13] = 0 (8_BE =0, 4-beat bursts)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500789 */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800790 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500791 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR1;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800792 else
Kim Phillips69257392007-08-17 09:30:00 -0500793 sdram_type = SDRAM_CFG_SDRAM_TYPE_DDR2;
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800794
795 sdram_cfg = (0
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500796 | SDRAM_CFG_MEM_EN /* DDR enable */
797 | SDRAM_CFG_SREN /* Self refresh */
798 | sdram_type /* SDRAM type */
Xie Xiaobo6149a5a2007-02-14 18:27:17 +0800799 );
Eran Liberty9095d4a2005-07-28 10:08:46 -0500800
Dave Liuf5035922006-10-25 14:41:21 -0500801 /* sdram_cfg[3] = RD_EN - registered DIMM enable */
Timur Tabiff0215a2006-11-28 12:09:35 -0600802 if (spd.mod_attr & 0x02)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500803 sdram_cfg |= SDRAM_CFG_RD_EN;
Dave Liuf5035922006-10-25 14:41:21 -0500804
805 /* The DIMM is 32bit width */
Lee Nipper9f5d5762008-04-10 09:35:06 -0500806 if (spd.dataw_lsb < 64) {
Dave Liuc9fa31f2007-08-04 13:37:39 +0800807 if (spd.mem_type == SPD_MEMTYPE_DDR)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500808 sdram_cfg |= SDRAM_CFG_32_BE | SDRAM_CFG_8_BE;
Dave Liuc9fa31f2007-08-04 13:37:39 +0800809 if (spd.mem_type == SPD_MEMTYPE_DDR2)
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500810 sdram_cfg |= SDRAM_CFG_32_BE;
Dave Liuc9fa31f2007-08-04 13:37:39 +0800811 }
Timur Tabiff0215a2006-11-28 12:09:35 -0600812
Dave Liuf5035922006-10-25 14:41:21 -0500813 ddrc_ecc_enable = 0;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500814
815#if defined(CONFIG_DDR_ECC)
Dave Liuf5035922006-10-25 14:41:21 -0500816 /* Enable ECC with sdram_cfg[2] */
Eran Liberty9095d4a2005-07-28 10:08:46 -0500817 if (spd.config == 0x02) {
Dave Liuf5035922006-10-25 14:41:21 -0500818 sdram_cfg |= 0x20000000;
819 ddrc_ecc_enable = 1;
820 /* disable error detection */
821 ddr->err_disable = ~ECC_ERROR_ENABLE;
822 /* set single bit error threshold to maximum value,
823 * reset counter to zero */
824 ddr->err_sbe = (255 << ECC_ERROR_MAN_SBET_SHIFT) |
Dave Liua46daea2006-11-03 19:33:44 -0600825 (0 << ECC_ERROR_MAN_SBEC_SHIFT);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500826 }
Dave Liuf5035922006-10-25 14:41:21 -0500827
828 debug("DDR:err_disable=0x%08x\n", ddr->err_disable);
829 debug("DDR:err_sbe=0x%08x\n", ddr->err_sbe);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500830#endif
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500831 debug(" DDRC ECC mode: %s\n", ddrc_ecc_enable ? "ON":"OFF");
Eran Liberty9095d4a2005-07-28 10:08:46 -0500832
833#if defined(CONFIG_DDR_2T_TIMING)
834 /*
835 * Enable 2T timing by setting sdram_cfg[16].
836 */
Dave Liuf5035922006-10-25 14:41:21 -0500837 sdram_cfg |= SDRAM_CFG_2T_EN;
Eran Liberty9095d4a2005-07-28 10:08:46 -0500838#endif
Dave Liuf5035922006-10-25 14:41:21 -0500839 /* Enable controller, and GO! */
840 ddr->sdram_cfg = sdram_cfg;
Mario Sixc463b6d2019-01-21 09:18:21 +0100841 sync();
842 isync();
Eran Liberty9095d4a2005-07-28 10:08:46 -0500843 udelay(500);
844
845 debug("DDR:sdram_cfg=0x%08x\n", ddr->sdram_cfg);
Rafal Jaworowski4a9b6aa2006-03-16 17:46:46 +0100846 return memsize; /*in MBytes*/
Eran Liberty9095d4a2005-07-28 10:08:46 -0500847}
Eran Liberty9095d4a2005-07-28 10:08:46 -0500848#endif /* CONFIG_SPD_EEPROM */
849
Peter Tysercb4731f2009-06-30 17:15:50 -0500850#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
Mario Sixc463b6d2019-01-21 09:18:21 +0100851static inline u32 mftbu(void)
852{
853 u32 rval;
854
855 asm volatile("mftbu %0" : "=r" (rval));
856 return rval;
857}
858
859static inline u32 mftb(void)
860{
861 u32 rval;
862
863 asm volatile("mftb %0" : "=r" (rval));
864 return rval;
865}
866
Eran Liberty9095d4a2005-07-28 10:08:46 -0500867/*
Robert P. J. Daycbd618f2015-12-16 12:25:42 -0500868 * Use timebase counter, get_timer() is not available
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100869 * at this point of initialization yet.
Eran Liberty9095d4a2005-07-28 10:08:46 -0500870 */
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100871static __inline__ unsigned long get_tbms (void)
872{
873 unsigned long tbl;
874 unsigned long tbu1, tbu2;
875 unsigned long ms;
876 unsigned long long tmp;
877
878 ulong tbclk = get_tbclk();
879
880 /* get the timebase ticks */
881 do {
Mario Sixc463b6d2019-01-21 09:18:21 +0100882 tbu1 = mftbu();
883 tbl = mftb();
884 tbu2 = mftbu();
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100885 } while (tbu1 != tbu2);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500886
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100887 /* convert ticks to ms */
888 tmp = (unsigned long long)(tbu1);
889 tmp = (tmp << 32);
890 tmp += (unsigned long long)(tbl);
891 ms = tmp/(tbclk/1000);
892
893 return ms;
894}
895
896/*
897 * Initialize all of memory for ECC, then enable errors.
898 */
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100899void ddr_enable_ecc(unsigned int dram_size)
Eran Liberty9095d4a2005-07-28 10:08:46 -0500900{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200901 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Dave Liuf5035922006-10-25 14:41:21 -0500902 volatile ddr83xx_t *ddr= &immap->ddr;
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100903 unsigned long t_start, t_end;
Dave Liu8c84e472006-11-02 18:05:50 -0600904 register u64 *p;
905 register uint size;
906 unsigned int pattern[2];
Peter Tyser6f33a352009-06-30 17:15:51 -0500907
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100908 icache_enable();
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100909 t_start = get_tbms();
Dave Liu8c84e472006-11-02 18:05:50 -0600910 pattern[0] = 0xdeadbeef;
911 pattern[1] = 0xdeadbeef;
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100912
Peter Tyser6f33a352009-06-30 17:15:51 -0500913#if defined(CONFIG_DDR_ECC_INIT_VIA_DMA)
914 dma_meminit(pattern[0], dram_size);
915#else
Dave Liu8c84e472006-11-02 18:05:50 -0600916 debug("ddr init: CPU FP write method\n");
917 size = dram_size;
918 for (p = 0; p < (u64*)(size); p++) {
919 ppcDWstore((u32*)p, pattern);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500920 }
Mario Sixc463b6d2019-01-21 09:18:21 +0100921 sync();
Jon Loeligerebc72242005-08-01 13:20:47 -0500922#endif
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100923
924 t_end = get_tbms();
925 icache_disable();
Eran Liberty9095d4a2005-07-28 10:08:46 -0500926
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100927 debug("\nREADY!!\n");
928 debug("ddr init duration: %ld ms\n", t_end - t_start);
929
930 /* Clear All ECC Errors */
931 if ((ddr->err_detect & ECC_ERROR_DETECT_MME) == ECC_ERROR_DETECT_MME)
932 ddr->err_detect |= ECC_ERROR_DETECT_MME;
933 if ((ddr->err_detect & ECC_ERROR_DETECT_MBE) == ECC_ERROR_DETECT_MBE)
934 ddr->err_detect |= ECC_ERROR_DETECT_MBE;
935 if ((ddr->err_detect & ECC_ERROR_DETECT_SBE) == ECC_ERROR_DETECT_SBE)
936 ddr->err_detect |= ECC_ERROR_DETECT_SBE;
937 if ((ddr->err_detect & ECC_ERROR_DETECT_MSE) == ECC_ERROR_DETECT_MSE)
938 ddr->err_detect |= ECC_ERROR_DETECT_MSE;
939
940 /* Disable ECC-Interrupts */
941 ddr->err_int_en &= ECC_ERR_INT_DISABLE;
942
943 /* Enable errors for ECC */
944 ddr->err_disable &= ECC_ERROR_ENABLE;
945
Mario Sixc463b6d2019-01-21 09:18:21 +0100946 sync();
947 isync();
Marian Balakowicz6f6104d2006-03-14 16:23:35 +0100948}
Eran Liberty9095d4a2005-07-28 10:08:46 -0500949#endif /* CONFIG_DDR_ECC */
Mario Six538b5752018-08-06 10:23:30 +0200950
951#endif /* !CONFIG_MPC83XX_SDRAM */