blob: ac4f8d2732d770334e250aa86dc5d866ec80efed [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Kumar Gala58e5e9a2008-08-26 15:01:29 -05002/*
York Sun34e026f2014-03-27 17:54:47 -07003 * Copyright 2008-2014 Freescale Semiconductor, Inc.
Kumar Gala58e5e9a2008-08-26 15:01:29 -05004 */
5
6#include <common.h>
York Sun9ac4ffb2013-09-30 14:20:51 -07007#ifdef CONFIG_PPC
Kumar Gala58e5e9a2008-08-26 15:01:29 -05008#include <asm/fsl_law.h>
York Sun9ac4ffb2013-09-30 14:20:51 -07009#endif
Kyle Moffette820a132011-03-15 11:23:47 -040010#include <div64.h>
Simon Glassc05ed002020-05-10 11:40:11 -060011#include <linux/delay.h>
Kumar Gala58e5e9a2008-08-26 15:01:29 -050012
York Sun5614e712013-09-30 09:22:09 -070013#include <fsl_ddr.h>
York Sun9a17eb52013-11-18 10:29:32 -080014#include <fsl_immap.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
York Sun5614e712013-09-30 09:22:09 -070016#include <asm/io.h>
Simon Glass457e51c2017-05-17 08:23:10 -060017#if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3) || \
18 defined(CONFIG_ARM)
Simon Glass6e2941d2017-05-17 08:23:06 -060019#include <asm/arch/clock.h>
20#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -050021
Kyle Moffette820a132011-03-15 11:23:47 -040022/* To avoid 64-bit full-divides, we factor this here */
Kyle Moffetta2879632011-04-14 13:39:30 -040023#define ULL_2E12 2000000000000ULL
24#define UL_5POW12 244140625UL
25#define UL_2POW13 (1UL << 13)
Kyle Moffette820a132011-03-15 11:23:47 -040026
Kyle Moffetta2879632011-04-14 13:39:30 -040027#define ULL_8FS 0xFFFFFFFFULL
Kyle Moffette820a132011-03-15 11:23:47 -040028
York Sun66869f92015-03-19 09:30:26 -070029u32 fsl_ddr_get_version(unsigned int ctrl_num)
York Sun34e026f2014-03-27 17:54:47 -070030{
31 struct ccsr_ddr __iomem *ddr;
32 u32 ver_major_minor_errata;
33
York Sun66869f92015-03-19 09:30:26 -070034 switch (ctrl_num) {
35 case 0:
36 ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
37 break;
York Sun51370d52016-12-28 08:43:45 -080038#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sun66869f92015-03-19 09:30:26 -070039 case 1:
40 ddr = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
41 break;
42#endif
York Sun51370d52016-12-28 08:43:45 -080043#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Sun66869f92015-03-19 09:30:26 -070044 case 2:
45 ddr = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
46 break;
47#endif
York Sun51370d52016-12-28 08:43:45 -080048#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Sun66869f92015-03-19 09:30:26 -070049 case 3:
50 ddr = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
51 break;
52#endif
53 default:
54 printf("%s unexpected ctrl_num = %u\n", __func__, ctrl_num);
55 return 0;
56 }
York Sun34e026f2014-03-27 17:54:47 -070057 ver_major_minor_errata = (ddr_in32(&ddr->ip_rev1) & 0xFFFF) << 8;
58 ver_major_minor_errata |= (ddr_in32(&ddr->ip_rev2) & 0xFF00) >> 8;
59
60 return ver_major_minor_errata;
61}
62
Kumar Gala58e5e9a2008-08-26 15:01:29 -050063/*
York Sun905acde2011-08-26 11:32:42 -070064 * Round up mclk_ps to nearest 1 ps in memory controller code
65 * if the error is 0.5ps or more.
Kumar Gala58e5e9a2008-08-26 15:01:29 -050066 *
67 * If an imprecise data rate is too high due to rounding error
68 * propagation, compute a suitably rounded mclk_ps to compute
69 * a working memory controller configuration.
70 */
York Sun03e664d2015-01-06 13:18:50 -080071unsigned int get_memory_clk_period_ps(const unsigned int ctrl_num)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050072{
York Sun03e664d2015-01-06 13:18:50 -080073 unsigned int data_rate = get_ddr_freq(ctrl_num);
Kyle Moffette820a132011-03-15 11:23:47 -040074 unsigned int result;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050075
Kyle Moffette820a132011-03-15 11:23:47 -040076 /* Round to nearest 10ps, being careful about 64-bit multiply/divide */
York Sun905acde2011-08-26 11:32:42 -070077 unsigned long long rem, mclk_ps = ULL_2E12;
Kyle Moffette820a132011-03-15 11:23:47 -040078
79 /* Now perform the big divide, the result fits in 32-bits */
York Sun905acde2011-08-26 11:32:42 -070080 rem = do_div(mclk_ps, data_rate);
81 result = (rem >= (data_rate >> 1)) ? mclk_ps + 1 : mclk_ps;
Kyle Moffette820a132011-03-15 11:23:47 -040082
York Sun905acde2011-08-26 11:32:42 -070083 return result;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050084}
85
86/* Convert picoseconds into DRAM clock cycles (rounding up if needed). */
York Sun03e664d2015-01-06 13:18:50 -080087unsigned int picos_to_mclk(const unsigned int ctrl_num, unsigned int picos)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050088{
Kyle Moffette820a132011-03-15 11:23:47 -040089 unsigned long long clks, clks_rem;
York Sun03e664d2015-01-06 13:18:50 -080090 unsigned long data_rate = get_ddr_freq(ctrl_num);
Kumar Gala58e5e9a2008-08-26 15:01:29 -050091
Kyle Moffette820a132011-03-15 11:23:47 -040092 /* Short circuit for zero picos */
Kumar Gala58e5e9a2008-08-26 15:01:29 -050093 if (!picos)
94 return 0;
95
Kyle Moffette820a132011-03-15 11:23:47 -040096 /* First multiply the time by the data rate (32x32 => 64) */
York Sun905acde2011-08-26 11:32:42 -070097 clks = picos * (unsigned long long)data_rate;
Kyle Moffette820a132011-03-15 11:23:47 -040098 /*
99 * Now divide by 5^12 and track the 32-bit remainder, then divide
100 * by 2*(2^12) using shifts (and updating the remainder).
101 */
Kyle Moffetta2879632011-04-14 13:39:30 -0400102 clks_rem = do_div(clks, UL_5POW12);
York Sun905acde2011-08-26 11:32:42 -0700103 clks_rem += (clks & (UL_2POW13-1)) * UL_5POW12;
Kyle Moffette820a132011-03-15 11:23:47 -0400104 clks >>= 13;
105
York Sun905acde2011-08-26 11:32:42 -0700106 /* If we had a remainder greater than the 1ps error, then round up */
107 if (clks_rem > data_rate)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500108 clks++;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500109
Kyle Moffette820a132011-03-15 11:23:47 -0400110 /* Clamp to the maximum representable value */
Kyle Moffetta2879632011-04-14 13:39:30 -0400111 if (clks > ULL_8FS)
112 clks = ULL_8FS;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500113 return (unsigned int) clks;
114}
115
York Sun03e664d2015-01-06 13:18:50 -0800116unsigned int mclk_to_picos(const unsigned int ctrl_num, unsigned int mclk)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500117{
York Sun03e664d2015-01-06 13:18:50 -0800118 return get_memory_clk_period_ps(ctrl_num) * mclk;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500119}
120
York Sun9ac4ffb2013-09-30 14:20:51 -0700121#ifdef CONFIG_PPC
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500122void
123__fsl_ddr_set_lawbar(const common_timing_params_t *memctl_common_params,
York Suna4c66502012-08-17 08:22:39 +0000124 unsigned int law_memctl,
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500125 unsigned int ctrl_num)
126{
Kumar Galae7563af2009-06-11 23:42:35 -0500127 unsigned long long base = memctl_common_params->base_address;
128 unsigned long long size = memctl_common_params->total_mem;
129
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500130 /*
131 * If no DIMMs on this controller, do not proceed any further.
132 */
133 if (!memctl_common_params->ndimms_present) {
134 return;
135 }
136
Kumar Galae7563af2009-06-11 23:42:35 -0500137#if !defined(CONFIG_PHYS_64BIT)
138 if (base >= CONFIG_MAX_MEM_MAPPED)
139 return;
140 if ((base + size) >= CONFIG_MAX_MEM_MAPPED)
141 size = CONFIG_MAX_MEM_MAPPED - base;
142#endif
York Suna4c66502012-08-17 08:22:39 +0000143 if (set_ddr_laws(base, size, law_memctl) < 0) {
144 printf("%s: ERROR (ctrl #%d, TRGT ID=%x)\n", __func__, ctrl_num,
145 law_memctl);
146 return ;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500147 }
York Suna4c66502012-08-17 08:22:39 +0000148 debug("setup ddr law base = 0x%llx, size 0x%llx, TRGT_ID 0x%x\n",
149 base, size, law_memctl);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500150}
151
152__attribute__((weak, alias("__fsl_ddr_set_lawbar"))) void
153fsl_ddr_set_lawbar(const common_timing_params_t *memctl_common_params,
154 unsigned int memctl_interleaved,
155 unsigned int ctrl_num);
York Sun9ac4ffb2013-09-30 14:20:51 -0700156#endif
Peter Tyserd9c147f2009-07-17 10:14:48 -0500157
York Suna4c66502012-08-17 08:22:39 +0000158void fsl_ddr_set_intl3r(const unsigned int granule_size)
159{
160#ifdef CONFIG_E6500
161 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
162 *mcintl3r = 0x80000000 | (granule_size & 0x1f);
163 debug("Enable MCINTL3R with granule size 0x%x\n", granule_size);
164#endif
165}
166
York Suneb539412012-10-08 07:44:25 +0000167u32 fsl_ddr_get_intl3r(void)
168{
169 u32 val = 0;
170#ifdef CONFIG_E6500
171 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
172 val = *mcintl3r;
173#endif
174 return val;
175}
176
York Sun1d71efb2014-08-01 15:51:00 -0700177void print_ddr_info(unsigned int start_ctrl)
Peter Tyserd9c147f2009-07-17 10:14:48 -0500178{
York Sun9a17eb52013-11-18 10:29:32 -0800179 struct ccsr_ddr __iomem *ddr =
180 (struct ccsr_ddr __iomem *)(CONFIG_SYS_FSL_DDR_ADDR);
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500181
York Sun51370d52016-12-28 08:43:45 -0800182#if defined(CONFIG_E6500) && (CONFIG_SYS_NUM_DDR_CTLRS == 3)
York Suna4c66502012-08-17 08:22:39 +0000183 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
184#endif
York Sun51370d52016-12-28 08:43:45 -0800185#if (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sun4e5b1bd2014-02-10 13:59:42 -0800186 uint32_t cs0_config = ddr_in32(&ddr->cs0_config);
Peter Tyserd9c147f2009-07-17 10:14:48 -0500187#endif
York Sun4e5b1bd2014-02-10 13:59:42 -0800188 uint32_t sdram_cfg = ddr_in32(&ddr->sdram_cfg);
Peter Tyserd9c147f2009-07-17 10:14:48 -0500189 int cas_lat;
190
York Sun51370d52016-12-28 08:43:45 -0800191#if CONFIG_SYS_NUM_DDR_CTLRS >= 2
York Sun1d71efb2014-08-01 15:51:00 -0700192 if ((!(sdram_cfg & SDRAM_CFG_MEM_EN)) ||
193 (start_ctrl == 1)) {
York Sun5614e712013-09-30 09:22:09 -0700194 ddr = (void __iomem *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sun4e5b1bd2014-02-10 13:59:42 -0800195 sdram_cfg = ddr_in32(&ddr->sdram_cfg);
York Sun123922b2012-10-08 07:44:23 +0000196 }
197#endif
York Sun51370d52016-12-28 08:43:45 -0800198#if CONFIG_SYS_NUM_DDR_CTLRS >= 3
York Sun1d71efb2014-08-01 15:51:00 -0700199 if ((!(sdram_cfg & SDRAM_CFG_MEM_EN)) ||
200 (start_ctrl == 2)) {
York Sun5614e712013-09-30 09:22:09 -0700201 ddr = (void __iomem *)CONFIG_SYS_FSL_DDR3_ADDR;
York Sun4e5b1bd2014-02-10 13:59:42 -0800202 sdram_cfg = ddr_in32(&ddr->sdram_cfg);
York Sun123922b2012-10-08 07:44:23 +0000203 }
204#endif
York Sun1d71efb2014-08-01 15:51:00 -0700205
206 if (!(sdram_cfg & SDRAM_CFG_MEM_EN)) {
207 puts(" (DDR not enabled)\n");
208 return;
209 }
210
Peter Tyserd9c147f2009-07-17 10:14:48 -0500211 puts(" (DDR");
212 switch ((sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK) >>
213 SDRAM_CFG_SDRAM_TYPE_SHIFT) {
214 case SDRAM_TYPE_DDR1:
215 puts("1");
216 break;
217 case SDRAM_TYPE_DDR2:
218 puts("2");
219 break;
220 case SDRAM_TYPE_DDR3:
221 puts("3");
222 break;
York Sun34e026f2014-03-27 17:54:47 -0700223 case SDRAM_TYPE_DDR4:
224 puts("4");
225 break;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500226 default:
227 puts("?");
228 break;
229 }
230
231 if (sdram_cfg & SDRAM_CFG_32_BE)
232 puts(", 32-bit");
Poonam Aggrwal0b3b1762011-02-07 15:09:51 +0530233 else if (sdram_cfg & SDRAM_CFG_16_BE)
234 puts(", 16-bit");
Peter Tyserd9c147f2009-07-17 10:14:48 -0500235 else
236 puts(", 64-bit");
237
238 /* Calculate CAS latency based on timing cfg values */
York Sun34e026f2014-03-27 17:54:47 -0700239 cas_lat = ((ddr_in32(&ddr->timing_cfg_1) >> 16) & 0xf);
York Sun66869f92015-03-19 09:30:26 -0700240 if (fsl_ddr_get_version(0) <= 0x40400)
York Sun34e026f2014-03-27 17:54:47 -0700241 cas_lat += 1;
242 else
243 cas_lat += 2;
244 cas_lat += ((ddr_in32(&ddr->timing_cfg_3) >> 12) & 3) << 4;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500245 printf(", CL=%d", cas_lat >> 1);
246 if (cas_lat & 0x1)
247 puts(".5");
248
249 if (sdram_cfg & SDRAM_CFG_ECC_EN)
250 puts(", ECC on)");
251 else
252 puts(", ECC off)");
253
York Sun51370d52016-12-28 08:43:45 -0800254#if (CONFIG_SYS_NUM_DDR_CTLRS == 3)
York Suna4c66502012-08-17 08:22:39 +0000255#ifdef CONFIG_E6500
256 if (*mcintl3r & 0x80000000) {
257 puts("\n");
258 puts(" DDR Controller Interleaving Mode: ");
259 switch (*mcintl3r & 0x1f) {
260 case FSL_DDR_3WAY_1KB_INTERLEAVING:
261 puts("3-way 1KB");
262 break;
263 case FSL_DDR_3WAY_4KB_INTERLEAVING:
264 puts("3-way 4KB");
265 break;
266 case FSL_DDR_3WAY_8KB_INTERLEAVING:
267 puts("3-way 8KB");
268 break;
269 default:
270 puts("3-way UNKNOWN");
271 break;
272 }
273 }
274#endif
275#endif
York Sun51370d52016-12-28 08:43:45 -0800276#if (CONFIG_SYS_NUM_DDR_CTLRS >= 2)
York Sun1d71efb2014-08-01 15:51:00 -0700277 if ((cs0_config & 0x20000000) && (start_ctrl == 0)) {
Peter Tyserd9c147f2009-07-17 10:14:48 -0500278 puts("\n");
279 puts(" DDR Controller Interleaving Mode: ");
280
281 switch ((cs0_config >> 24) & 0xf) {
York Sun6b1e1252014-02-10 13:59:44 -0800282 case FSL_DDR_256B_INTERLEAVING:
283 puts("256B");
284 break;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500285 case FSL_DDR_CACHE_LINE_INTERLEAVING:
286 puts("cache line");
287 break;
288 case FSL_DDR_PAGE_INTERLEAVING:
289 puts("page");
290 break;
291 case FSL_DDR_BANK_INTERLEAVING:
292 puts("bank");
293 break;
294 case FSL_DDR_SUPERBANK_INTERLEAVING:
295 puts("super-bank");
296 break;
297 default:
298 puts("invalid");
299 break;
300 }
301 }
302#endif
303
304 if ((sdram_cfg >> 8) & 0x7f) {
305 puts("\n");
306 puts(" DDR Chip-Select Interleaving Mode: ");
307 switch(sdram_cfg >> 8 & 0x7f) {
308 case FSL_DDR_CS0_CS1_CS2_CS3:
309 puts("CS0+CS1+CS2+CS3");
310 break;
311 case FSL_DDR_CS0_CS1:
312 puts("CS0+CS1");
313 break;
314 case FSL_DDR_CS2_CS3:
315 puts("CS2+CS3");
316 break;
317 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
318 puts("CS0+CS1 and CS2+CS3");
319 break;
320 default:
321 puts("invalid");
322 break;
323 }
324 }
325}
York Sun1d71efb2014-08-01 15:51:00 -0700326
327void __weak detail_board_ddr_info(void)
328{
329 print_ddr_info(0);
330}
331
332void board_add_ram_info(int use_default)
333{
334 detail_board_ddr_info();
335}
York Sune32d59a2015-01-06 13:18:55 -0800336
337#ifdef CONFIG_FSL_DDR_SYNC_REFRESH
338#define DDRC_DEBUG20_INIT_DONE 0x80000000
339#define DDRC_DEBUG2_RF 0x00000040
340void fsl_ddr_sync_memctl_refresh(unsigned int first_ctrl,
341 unsigned int last_ctrl)
342{
343 unsigned int i;
344 u32 ddrc_debug20;
York Sun51370d52016-12-28 08:43:45 -0800345 u32 ddrc_debug2[CONFIG_SYS_NUM_DDR_CTLRS] = {};
346 u32 *ddrc_debug2_p[CONFIG_SYS_NUM_DDR_CTLRS] = {};
York Sune32d59a2015-01-06 13:18:55 -0800347 struct ccsr_ddr __iomem *ddr;
348
349 for (i = first_ctrl; i <= last_ctrl; i++) {
350 switch (i) {
351 case 0:
352 ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
353 break;
York Sun51370d52016-12-28 08:43:45 -0800354#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sune32d59a2015-01-06 13:18:55 -0800355 case 1:
356 ddr = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
357 break;
358#endif
York Sun51370d52016-12-28 08:43:45 -0800359#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Sune32d59a2015-01-06 13:18:55 -0800360 case 2:
361 ddr = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
362 break;
363#endif
York Sun51370d52016-12-28 08:43:45 -0800364#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Sune32d59a2015-01-06 13:18:55 -0800365 case 3:
366 ddr = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
367 break;
368#endif
369 default:
370 printf("%s unexpected ctrl = %u\n", __func__, i);
371 return;
372 }
373 ddrc_debug20 = ddr_in32(&ddr->debug[19]);
374 ddrc_debug2_p[i] = &ddr->debug[1];
375 while (!(ddrc_debug20 & DDRC_DEBUG20_INIT_DONE)) {
376 /* keep polling until DDRC init is done */
377 udelay(100);
378 ddrc_debug20 = ddr_in32(&ddr->debug[19]);
379 }
380 ddrc_debug2[i] = ddr_in32(&ddr->debug[1]) | DDRC_DEBUG2_RF;
381 }
382 /*
383 * Sync refresh
384 * This is put together to make sure the refresh reqeusts are sent
385 * closely to each other.
386 */
387 for (i = first_ctrl; i <= last_ctrl; i++)
388 ddr_out32(ddrc_debug2_p[i], ddrc_debug2[i]);
389}
390#endif /* CONFIG_FSL_DDR_SYNC_REFRESH */
York Sun61bd2f72015-11-04 09:53:10 -0800391
392void remove_unused_controllers(fsl_ddr_info_t *info)
393{
Ashish Kumar6d9b82d2017-08-31 16:12:53 +0530394#ifdef CONFIG_SYS_FSL_HAS_CCN504
York Sun61bd2f72015-11-04 09:53:10 -0800395 int i;
396 u64 nodeid;
397 void *hnf_sam_ctrl = (void *)(CCI_HN_F_0_BASE + CCN_HN_F_SAM_CTL);
398 bool ddr0_used = false;
399 bool ddr1_used = false;
400
401 for (i = 0; i < 8; i++) {
402 nodeid = in_le64(hnf_sam_ctrl) & CCN_HN_F_SAM_NODEID_MASK;
403 if (nodeid == CCN_HN_F_SAM_NODEID_DDR0) {
404 ddr0_used = true;
405 } else if (nodeid == CCN_HN_F_SAM_NODEID_DDR1) {
406 ddr1_used = true;
407 } else {
408 printf("Unknown nodeid in HN-F SAM control: 0x%llx\n",
409 nodeid);
410 }
411 hnf_sam_ctrl += (CCI_HN_F_1_BASE - CCI_HN_F_0_BASE);
412 }
413 if (!ddr0_used && !ddr1_used) {
414 printf("Invalid configuration in HN-F SAM control\n");
415 return;
416 }
417
418 if (!ddr0_used && info->first_ctrl == 0) {
419 info->first_ctrl = 1;
420 info->num_ctrls = 1;
421 debug("First DDR controller disabled\n");
422 return;
423 }
424
425 if (!ddr1_used && info->first_ctrl + info->num_ctrls > 1) {
426 info->num_ctrls = 1;
427 debug("Second DDR controller disabled\n");
428 }
429#endif
430}