blob: c5b47200e08b017c95c58b78cb03664ece50cc33 [file] [log] [blame]
Kumar Gala2a6c2d72008-08-26 21:34:55 -05001/*
York Sun744713a2012-08-17 08:22:36 +00002 * Copyright 2008-2012 Freescale Semiconductor, Inc.
Kumar Gala2a6c2d72008-08-26 21:34:55 -05003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * Version 2 as published by the Free Software Foundation.
7 */
8
9#include <common.h>
10#include <asm/io.h>
11#include <asm/fsl_ddr_sdram.h>
York Sund2a95682011-01-10 12:02:59 +000012#include <asm/processor.h>
Kumar Gala2a6c2d72008-08-26 21:34:55 -050013
14#if (CONFIG_CHIP_SELECTS_PER_CTRL > 4)
15#error Invalid setting for CONFIG_CHIP_SELECTS_PER_CTRL
16#endif
17
18void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs,
19 unsigned int ctrl_num)
20{
York Sunf31cfd12012-10-08 07:44:24 +000021 unsigned int i, bus_width;
Kumar Gala2a6c2d72008-08-26 21:34:55 -050022 volatile ccsr_ddr_t *ddr;
Poonam_Aggrwal-b10812e1be0d22009-01-04 08:46:38 +053023 u32 temp_sdram_cfg;
York Sunf31cfd12012-10-08 07:44:24 +000024 u32 total_gb_size_per_controller;
Andy Fleming23028d62012-10-22 17:28:18 -050025 int timeout;
York Sun91671912011-01-25 22:05:49 -080026#ifdef CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134
Andy Fleming23028d62012-10-22 17:28:18 -050027 int timeout_save;
York Sun91671912011-01-25 22:05:49 -080028 volatile ccsr_local_ecm_t *ecm = (void *)CONFIG_SYS_MPC85xx_ECM_ADDR;
York Suneb672e92011-03-17 11:18:13 -070029 unsigned int csn_bnds_backup = 0, cs_sa, cs_ea, *csn_bnds_t;
30 int csn = -1;
York Sun91671912011-01-25 22:05:49 -080031#endif
Kumar Gala2a6c2d72008-08-26 21:34:55 -050032
33 switch (ctrl_num) {
34 case 0:
Andy Fleminge76cd5d2012-10-23 19:03:46 -050035 ddr = (void *)CONFIG_SYS_MPC8xxx_DDR_ADDR;
Kumar Gala2a6c2d72008-08-26 21:34:55 -050036 break;
Andy Fleminge76cd5d2012-10-23 19:03:46 -050037#if defined(CONFIG_SYS_MPC8xxx_DDR2_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 1)
Kumar Gala2a6c2d72008-08-26 21:34:55 -050038 case 1:
Andy Fleminge76cd5d2012-10-23 19:03:46 -050039 ddr = (void *)CONFIG_SYS_MPC8xxx_DDR2_ADDR;
Kumar Gala2a6c2d72008-08-26 21:34:55 -050040 break;
York Suna4c66502012-08-17 08:22:39 +000041#endif
Andy Fleminge76cd5d2012-10-23 19:03:46 -050042#if defined(CONFIG_SYS_MPC8xxx_DDR3_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 2)
York Suna4c66502012-08-17 08:22:39 +000043 case 2:
Andy Fleminge76cd5d2012-10-23 19:03:46 -050044 ddr = (void *)CONFIG_SYS_MPC8xxx_DDR3_ADDR;
York Suna4c66502012-08-17 08:22:39 +000045 break;
46#endif
Andy Fleminge76cd5d2012-10-23 19:03:46 -050047#if defined(CONFIG_SYS_MPC8xxx_DDR4_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 3)
York Suna4c66502012-08-17 08:22:39 +000048 case 3:
Andy Fleminge76cd5d2012-10-23 19:03:46 -050049 ddr = (void *)CONFIG_SYS_MPC8xxx_DDR4_ADDR;
York Suna4c66502012-08-17 08:22:39 +000050 break;
51#endif
Kumar Gala2a6c2d72008-08-26 21:34:55 -050052 default:
53 printf("%s unexpected ctrl_num = %u\n", __FUNCTION__, ctrl_num);
54 return;
55 }
56
York Sunf31cfd12012-10-08 07:44:24 +000057 if (regs->ddr_eor)
58 out_be32(&ddr->eor, regs->ddr_eor);
York Suneb672e92011-03-17 11:18:13 -070059#ifdef CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134
York Sun744713a2012-08-17 08:22:36 +000060 debug("Workaround for ERRATUM_DDR111_DDR134\n");
York Suneb672e92011-03-17 11:18:13 -070061 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
62 cs_sa = (regs->cs[i].bnds >> 16) & 0xfff;
63 cs_ea = regs->cs[i].bnds & 0xfff;
64 if ((cs_sa <= 0xff) && (cs_ea >= 0xff)) {
65 csn = i;
66 csn_bnds_backup = regs->cs[i].bnds;
67 csn_bnds_t = (unsigned int *) &regs->cs[i].bnds;
York Sun535a1592012-05-21 08:43:11 +000068 if (cs_ea > 0xeff)
69 *csn_bnds_t = regs->cs[i].bnds + 0x01000000;
70 else
71 *csn_bnds_t = regs->cs[i].bnds + 0x01000100;
York Suneb672e92011-03-17 11:18:13 -070072 debug("Found cs%d_bns (0x%08x) covering 0xff000000, "
73 "change it to 0x%x\n",
74 csn, csn_bnds_backup, regs->cs[i].bnds);
75 break;
76 }
77 }
78#endif
Kumar Gala2a6c2d72008-08-26 21:34:55 -050079 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
80 if (i == 0) {
81 out_be32(&ddr->cs0_bnds, regs->cs[i].bnds);
82 out_be32(&ddr->cs0_config, regs->cs[i].config);
83 out_be32(&ddr->cs0_config_2, regs->cs[i].config_2);
84
85 } else if (i == 1) {
86 out_be32(&ddr->cs1_bnds, regs->cs[i].bnds);
87 out_be32(&ddr->cs1_config, regs->cs[i].config);
88 out_be32(&ddr->cs1_config_2, regs->cs[i].config_2);
89
90 } else if (i == 2) {
91 out_be32(&ddr->cs2_bnds, regs->cs[i].bnds);
92 out_be32(&ddr->cs2_config, regs->cs[i].config);
93 out_be32(&ddr->cs2_config_2, regs->cs[i].config_2);
94
95 } else if (i == 3) {
96 out_be32(&ddr->cs3_bnds, regs->cs[i].bnds);
97 out_be32(&ddr->cs3_config, regs->cs[i].config);
98 out_be32(&ddr->cs3_config_2, regs->cs[i].config_2);
99 }
100 }
101
102 out_be32(&ddr->timing_cfg_3, regs->timing_cfg_3);
103 out_be32(&ddr->timing_cfg_0, regs->timing_cfg_0);
104 out_be32(&ddr->timing_cfg_1, regs->timing_cfg_1);
105 out_be32(&ddr->timing_cfg_2, regs->timing_cfg_2);
106 out_be32(&ddr->sdram_cfg_2, regs->ddr_sdram_cfg_2);
107 out_be32(&ddr->sdram_mode, regs->ddr_sdram_mode);
108 out_be32(&ddr->sdram_mode_2, regs->ddr_sdram_mode_2);
York Sune1fd16b2011-01-10 12:03:00 +0000109 out_be32(&ddr->sdram_mode_3, regs->ddr_sdram_mode_3);
110 out_be32(&ddr->sdram_mode_4, regs->ddr_sdram_mode_4);
111 out_be32(&ddr->sdram_mode_5, regs->ddr_sdram_mode_5);
112 out_be32(&ddr->sdram_mode_6, regs->ddr_sdram_mode_6);
113 out_be32(&ddr->sdram_mode_7, regs->ddr_sdram_mode_7);
114 out_be32(&ddr->sdram_mode_8, regs->ddr_sdram_mode_8);
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500115 out_be32(&ddr->sdram_md_cntl, regs->ddr_sdram_md_cntl);
116 out_be32(&ddr->sdram_interval, regs->ddr_sdram_interval);
117 out_be32(&ddr->sdram_data_init, regs->ddr_data_init);
118 out_be32(&ddr->sdram_clk_cntl, regs->ddr_sdram_clk_cntl);
119 out_be32(&ddr->init_addr, regs->ddr_init_addr);
120 out_be32(&ddr->init_ext_addr, regs->ddr_init_ext_addr);
121
122 out_be32(&ddr->timing_cfg_4, regs->timing_cfg_4);
123 out_be32(&ddr->timing_cfg_5, regs->timing_cfg_5);
124 out_be32(&ddr->ddr_zq_cntl, regs->ddr_zq_cntl);
125 out_be32(&ddr->ddr_wrlvl_cntl, regs->ddr_wrlvl_cntl);
York Sun57495e42012-10-08 07:44:22 +0000126 if (regs->ddr_wrlvl_cntl_2)
127 out_be32(&ddr->ddr_wrlvl_cntl_2, regs->ddr_wrlvl_cntl_2);
128 if (regs->ddr_wrlvl_cntl_3)
129 out_be32(&ddr->ddr_wrlvl_cntl_3, regs->ddr_wrlvl_cntl_3);
130
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500131 out_be32(&ddr->ddr_sr_cntr, regs->ddr_sr_cntr);
132 out_be32(&ddr->ddr_sdram_rcw_1, regs->ddr_sdram_rcw_1);
133 out_be32(&ddr->ddr_sdram_rcw_2, regs->ddr_sdram_rcw_2);
York Sund2a95682011-01-10 12:02:59 +0000134 out_be32(&ddr->ddr_cdr1, regs->ddr_cdr1);
135 out_be32(&ddr->ddr_cdr2, regs->ddr_cdr2);
136 out_be32(&ddr->err_disable, regs->err_disable);
137 out_be32(&ddr->err_int_en, regs->err_int_en);
York Sun744713a2012-08-17 08:22:36 +0000138 for (i = 0; i < 32; i++) {
139 if (regs->debug[i]) {
140 debug("Write to debug_%d as %08x\n", i+1, regs->debug[i]);
141 out_be32(&ddr->debug[i], regs->debug[i]);
142 }
143 }
York Suna1d558a2012-10-08 07:44:26 +0000144#ifdef CONFIG_SYS_FSL_ERRATUM_A_004934
York Sun8444b532013-03-25 07:39:34 +0000145 out_be32(&ddr->debug[28], 0x30003000);
York Suna1d558a2012-10-08 07:44:26 +0000146#endif
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500147
York Sun41085082011-11-20 10:01:35 -0800148#ifdef CONFIG_SYS_FSL_ERRATUM_DDR_A003474
149 out_be32(&ddr->debug[12], 0x00000015);
150 out_be32(&ddr->debug[21], 0x24000000);
151#endif /* CONFIG_SYS_FSL_ERRATUM_DDR_A003474 */
152
Ed Swarthout0ee84b82009-02-24 02:37:59 -0600153 /* Set, but do not enable the memory */
154 temp_sdram_cfg = regs->ddr_sdram_cfg;
Poonam_Aggrwal-b10812e1be0d22009-01-04 08:46:38 +0530155 temp_sdram_cfg &= ~(SDRAM_CFG_MEM_EN);
156 out_be32(&ddr->sdram_cfg, temp_sdram_cfg);
York Sunfa8d23c2011-01-10 12:03:01 +0000157#ifdef CONFIG_SYS_FSL_ERRATUM_DDR_A003
York Sun744713a2012-08-17 08:22:36 +0000158 debug("Workaround for ERRATUM_DDR_A003\n");
York Sunfa8d23c2011-01-10 12:03:01 +0000159 if (regs->ddr_sdram_rcw_2 & 0x00f00000) {
160 out_be32(&ddr->timing_cfg_2, regs->timing_cfg_2 & 0xf07fffff);
161 out_be32(&ddr->debug[2], 0x00000400);
162 out_be32(&ddr->ddr_zq_cntl, regs->ddr_zq_cntl & 0x7fffffff);
163 out_be32(&ddr->ddr_wrlvl_cntl, regs->ddr_wrlvl_cntl & 0x7fffffff);
164 out_be32(&ddr->sdram_cfg_2, regs->ddr_sdram_cfg_2 & 0xffffffeb);
165 out_be32(&ddr->mtcr, 0);
166 out_be32(&ddr->debug[12], 0x00000015);
167 out_be32(&ddr->debug[21], 0x24000000);
168 out_be32(&ddr->sdram_interval, regs->ddr_sdram_interval & 0xffff);
169 out_be32(&ddr->sdram_cfg, temp_sdram_cfg | SDRAM_CFG_BI | SDRAM_CFG_MEM_EN);
170
171 asm volatile("sync;isync");
172 while (!(in_be32(&ddr->debug[1]) & 0x2))
173 ;
174
175 switch (regs->ddr_sdram_rcw_2 & 0x00f00000) {
176 case 0x00000000:
177 out_be32(&ddr->sdram_md_cntl,
178 MD_CNTL_MD_EN |
179 MD_CNTL_CS_SEL_CS0_CS1 |
180 0x04000000 |
181 MD_CNTL_WRCW |
182 MD_CNTL_MD_VALUE(0x02));
183 break;
184 case 0x00100000:
185 out_be32(&ddr->sdram_md_cntl,
186 MD_CNTL_MD_EN |
187 MD_CNTL_CS_SEL_CS0_CS1 |
188 0x04000000 |
189 MD_CNTL_WRCW |
190 MD_CNTL_MD_VALUE(0x0a));
191 break;
192 case 0x00200000:
193 out_be32(&ddr->sdram_md_cntl,
194 MD_CNTL_MD_EN |
195 MD_CNTL_CS_SEL_CS0_CS1 |
196 0x04000000 |
197 MD_CNTL_WRCW |
198 MD_CNTL_MD_VALUE(0x12));
199 break;
200 case 0x00300000:
201 out_be32(&ddr->sdram_md_cntl,
202 MD_CNTL_MD_EN |
203 MD_CNTL_CS_SEL_CS0_CS1 |
204 0x04000000 |
205 MD_CNTL_WRCW |
206 MD_CNTL_MD_VALUE(0x1a));
207 break;
208 default:
209 out_be32(&ddr->sdram_md_cntl,
210 MD_CNTL_MD_EN |
211 MD_CNTL_CS_SEL_CS0_CS1 |
212 0x04000000 |
213 MD_CNTL_WRCW |
214 MD_CNTL_MD_VALUE(0x02));
215 printf("Unsupported RC10\n");
216 break;
217 }
218
219 while (in_be32(&ddr->sdram_md_cntl) & 0x80000000)
220 ;
221 udelay(6);
222 out_be32(&ddr->sdram_cfg, temp_sdram_cfg);
223 out_be32(&ddr->timing_cfg_2, regs->timing_cfg_2);
224 out_be32(&ddr->debug[2], 0x0);
225 out_be32(&ddr->ddr_zq_cntl, regs->ddr_zq_cntl);
226 out_be32(&ddr->ddr_wrlvl_cntl, regs->ddr_wrlvl_cntl);
227 out_be32(&ddr->sdram_cfg_2, regs->ddr_sdram_cfg_2);
228 out_be32(&ddr->debug[12], 0x0);
229 out_be32(&ddr->debug[21], 0x0);
230 out_be32(&ddr->sdram_interval, regs->ddr_sdram_interval);
231
232 }
233#endif
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500234 /*
Dave Liuae5f9432008-10-23 21:18:53 +0800235 * For 8572 DDR1 erratum - DDR controller may enter illegal state
236 * when operatiing in 32-bit bus mode with 4-beat bursts,
237 * This erratum does not affect DDR3 mode, only for DDR2 mode.
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500238 */
York Suneb0aff72011-01-25 21:51:27 -0800239#ifdef CONFIG_SYS_FSL_ERRATUM_DDR_115
York Sun744713a2012-08-17 08:22:36 +0000240 debug("Workaround for ERRATUM_DDR_115\n");
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500241 if ((((in_be32(&ddr->sdram_cfg) >> 24) & 0x7) == SDRAM_TYPE_DDR2)
Dave Liuae5f9432008-10-23 21:18:53 +0800242 && in_be32(&ddr->sdram_cfg) & 0x80000) {
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500243 /* set DEBUG_1[31] */
York Sund2a95682011-01-10 12:02:59 +0000244 setbits_be32(&ddr->debug[0], 1);
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500245 }
Dave Liuae5f9432008-10-23 21:18:53 +0800246#endif
York Sun91671912011-01-25 22:05:49 -0800247#ifdef CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134
York Sun744713a2012-08-17 08:22:36 +0000248 debug("Workaround for ERRATUM_DDR111_DDR134\n");
York Sun91671912011-01-25 22:05:49 -0800249 /*
250 * This is the combined workaround for DDR111 and DDR134
251 * following the published errata for MPC8572
252 */
253
254 /* 1. Set EEBACR[3] */
255 setbits_be32(&ecm->eebacr, 0x10000000);
256 debug("Setting EEBACR[3] to 0x%08x\n", in_be32(&ecm->eebacr));
257
258 /* 2. Set DINIT in SDRAM_CFG_2*/
259 setbits_be32(&ddr->sdram_cfg_2, SDRAM_CFG2_D_INIT);
260 debug("Setting sdram_cfg_2[D_INIT] to 0x%08x\n",
261 in_be32(&ddr->sdram_cfg_2));
262
263 /* 3. Set DEBUG_3[21] */
264 setbits_be32(&ddr->debug[2], 0x400);
265 debug("Setting DEBUG_3[21] to 0x%08x\n", in_be32(&ddr->debug[2]));
266
267#endif /* part 1 of the workaound */
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500268
269 /*
Dave Liuc360cea2009-03-14 12:48:30 +0800270 * 500 painful micro-seconds must elapse between
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500271 * the DDR clock setup and the DDR config enable.
Dave Liuc360cea2009-03-14 12:48:30 +0800272 * DDR2 need 200 us, and DDR3 need 500 us from spec,
273 * we choose the max, that is 500 us for all of case.
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500274 */
Dave Liuc360cea2009-03-14 12:48:30 +0800275 udelay(500);
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500276 asm volatile("sync;isync");
277
Poonam_Aggrwal-b10812e1be0d22009-01-04 08:46:38 +0530278 /* Let the controller go */
York Sunfa8d23c2011-01-10 12:03:01 +0000279 temp_sdram_cfg = in_be32(&ddr->sdram_cfg) & ~SDRAM_CFG_BI;
Poonam_Aggrwal-b10812e1be0d22009-01-04 08:46:38 +0530280 out_be32(&ddr->sdram_cfg, temp_sdram_cfg | SDRAM_CFG_MEM_EN);
York Sunfa8d23c2011-01-10 12:03:01 +0000281 asm volatile("sync;isync");
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500282
York Sunf31cfd12012-10-08 07:44:24 +0000283 total_gb_size_per_controller = 0;
284 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
285 if (!(regs->cs[i].config & 0x80000000))
286 continue;
287 total_gb_size_per_controller += 1 << (
288 ((regs->cs[i].config >> 14) & 0x3) + 2 +
289 ((regs->cs[i].config >> 8) & 0x7) + 12 +
290 ((regs->cs[i].config >> 0) & 0x7) + 8 +
291 3 - ((regs->ddr_sdram_cfg >> 19) & 0x3) -
292 26); /* minus 26 (count of 64M) */
293 }
294 if (fsl_ddr_get_intl3r() & 0x80000000) /* 3-way interleaving */
295 total_gb_size_per_controller *= 3;
296 else if (regs->cs[0].config & 0x20000000) /* 2-way interleaving */
297 total_gb_size_per_controller <<= 1;
298 /*
299 * total memory / bus width = transactions needed
300 * transactions needed / data rate = seconds
301 * to add plenty of buffer, double the time
302 * For example, 2GB on 666MT/s 64-bit bus takes about 402ms
303 * Let's wait for 800ms
304 */
305 bus_width = 3 - ((ddr->sdram_cfg & SDRAM_CFG_DBW_MASK)
306 >> SDRAM_CFG_DBW_SHIFT);
307 timeout = ((total_gb_size_per_controller << (6 - bus_width)) * 100 /
308 (get_ddr_freq(0) >> 20)) << 1;
Andy Fleming23028d62012-10-22 17:28:18 -0500309#ifdef CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134
York Sunf31cfd12012-10-08 07:44:24 +0000310 timeout_save = timeout;
Andy Fleming23028d62012-10-22 17:28:18 -0500311#endif
York Sunf31cfd12012-10-08 07:44:24 +0000312 total_gb_size_per_controller >>= 4; /* shift down to gb size */
313 debug("total %d GB\n", total_gb_size_per_controller);
314 debug("Need to wait up to %d * 10ms\n", timeout);
315
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500316 /* Poll DDR_SDRAM_CFG_2[D_INIT] bit until auto-data init is done. */
York Sunf31cfd12012-10-08 07:44:24 +0000317 while ((in_be32(&ddr->sdram_cfg_2) & SDRAM_CFG2_D_INIT) &&
318 (timeout >= 0)) {
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500319 udelay(10000); /* throttle polling rate */
York Sunf31cfd12012-10-08 07:44:24 +0000320 timeout--;
321 }
322
323 if (timeout <= 0)
324 printf("Waiting for D_INIT timeout. Memory may not work.\n");
York Sun91671912011-01-25 22:05:49 -0800325
326#ifdef CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134
327 /* continue this workaround */
328
329 /* 4. Clear DEBUG3[21] */
330 clrbits_be32(&ddr->debug[2], 0x400);
331 debug("Clearing D3[21] to 0x%08x\n", in_be32(&ddr->debug[2]));
332
333 /* DDR134 workaround starts */
334 /* A: Clear sdram_cfg_2[odt_cfg] */
335 clrbits_be32(&ddr->sdram_cfg_2, SDRAM_CFG2_ODT_CFG_MASK);
336 debug("Clearing SDRAM_CFG2[ODT_CFG] to 0x%08x\n",
337 in_be32(&ddr->sdram_cfg_2));
338
339 /* B: Set DEBUG1[15] */
340 setbits_be32(&ddr->debug[0], 0x10000);
341 debug("Setting D1[15] to 0x%08x\n", in_be32(&ddr->debug[0]));
342
343 /* C: Set timing_cfg_2[cpo] to 0b11111 */
344 setbits_be32(&ddr->timing_cfg_2, TIMING_CFG_2_CPO_MASK);
345 debug("Setting TMING_CFG_2[CPO] to 0x%08x\n",
346 in_be32(&ddr->timing_cfg_2));
347
348 /* D: Set D6 to 0x9f9f9f9f */
349 out_be32(&ddr->debug[5], 0x9f9f9f9f);
350 debug("Setting D6 to 0x%08x\n", in_be32(&ddr->debug[5]));
351
352 /* E: Set D7 to 0x9f9f9f9f */
353 out_be32(&ddr->debug[6], 0x9f9f9f9f);
354 debug("Setting D7 to 0x%08x\n", in_be32(&ddr->debug[6]));
355
356 /* F: Set D2[20] */
357 setbits_be32(&ddr->debug[1], 0x800);
358 debug("Setting D2[20] to 0x%08x\n", in_be32(&ddr->debug[1]));
359
360 /* G: Poll on D2[20] until cleared */
361 while (in_be32(&ddr->debug[1]) & 0x800)
362 udelay(10000); /* throttle polling rate */
363
364 /* H: Clear D1[15] */
365 clrbits_be32(&ddr->debug[0], 0x10000);
366 debug("Setting D1[15] to 0x%08x\n", in_be32(&ddr->debug[0]));
367
368 /* I: Set sdram_cfg_2[odt_cfg] */
369 setbits_be32(&ddr->sdram_cfg_2,
370 regs->ddr_sdram_cfg_2 & SDRAM_CFG2_ODT_CFG_MASK);
371 debug("Setting sdram_cfg_2 to 0x%08x\n", in_be32(&ddr->sdram_cfg_2));
372
373 /* Continuing with the DDR111 workaround */
374 /* 5. Set D2[21] */
375 setbits_be32(&ddr->debug[1], 0x400);
376 debug("Setting D2[21] to 0x%08x\n", in_be32(&ddr->debug[1]));
377
378 /* 6. Poll D2[21] until its cleared */
379 while (in_be32(&ddr->debug[1]) & 0x400)
380 udelay(10000); /* throttle polling rate */
381
York Sunf31cfd12012-10-08 07:44:24 +0000382 /* 7. Wait for state machine 2nd run, roughly 400ms/GB */
383 debug("Wait for %d * 10ms\n", timeout_save);
384 udelay(timeout_save * 10000);
York Sun91671912011-01-25 22:05:49 -0800385
386 /* 8. Set sdram_cfg_2[dinit] if options requires */
387 setbits_be32(&ddr->sdram_cfg_2,
388 regs->ddr_sdram_cfg_2 & SDRAM_CFG2_D_INIT);
389 debug("Setting sdram_cfg_2 to 0x%08x\n", in_be32(&ddr->sdram_cfg_2));
390
391 /* 9. Poll until dinit is cleared */
York Sunf31cfd12012-10-08 07:44:24 +0000392 timeout = timeout_save;
393 debug("Need to wait up to %d * 10ms\n", timeout);
394 while ((in_be32(&ddr->sdram_cfg_2) & SDRAM_CFG2_D_INIT) &&
395 (timeout >= 0)) {
396 udelay(10000); /* throttle polling rate */
397 timeout--;
398 }
399
400 if (timeout <= 0)
401 printf("Waiting for D_INIT timeout. Memory may not work.\n");
York Sun91671912011-01-25 22:05:49 -0800402
403 /* 10. Clear EEBACR[3] */
404 clrbits_be32(&ecm->eebacr, 10000000);
405 debug("Clearing EEBACR[3] to 0x%08x\n", in_be32(&ecm->eebacr));
York Suneb672e92011-03-17 11:18:13 -0700406
407 if (csn != -1) {
408 csn_bnds_t = (unsigned int *) &regs->cs[csn].bnds;
409 *csn_bnds_t = csn_bnds_backup;
410 debug("Change cs%d_bnds back to 0x%08x\n",
411 csn, regs->cs[csn].bnds);
412 setbits_be32(&ddr->sdram_cfg, 0x2); /* MEM_HALT */
413 switch (csn) {
414 case 0:
415 out_be32(&ddr->cs0_bnds, regs->cs[csn].bnds);
416 break;
417 case 1:
418 out_be32(&ddr->cs1_bnds, regs->cs[csn].bnds);
419 break;
420 case 2:
421 out_be32(&ddr->cs2_bnds, regs->cs[csn].bnds);
422 break;
423 case 3:
424 out_be32(&ddr->cs3_bnds, regs->cs[csn].bnds);
425 break;
426 }
427 clrbits_be32(&ddr->sdram_cfg, 0x2);
428 }
York Sun91671912011-01-25 22:05:49 -0800429#endif /* CONFIG_SYS_FSL_ERRATUM_DDR111_DDR134 */
Kumar Gala2a6c2d72008-08-26 21:34:55 -0500430}