blob: 99777793a591fbace62d0c6bb3998db81606888e [file] [log] [blame]
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001/*
York Sun34e026f2014-03-27 17:54:47 -07002 * Copyright 2008-2014 Freescale Semiconductor, Inc.
Kumar Gala58e5e9a2008-08-26 15:01:29 -05003 *
Tom Rini5b8031c2016-01-14 22:05:13 -05004 * SPDX-License-Identifier: GPL-2.0
Kumar Gala58e5e9a2008-08-26 15:01:29 -05005 */
6
7#include <common.h>
York Sun9ac4ffb2013-09-30 14:20:51 -07008#ifdef CONFIG_PPC
Kumar Gala58e5e9a2008-08-26 15:01:29 -05009#include <asm/fsl_law.h>
York Sun9ac4ffb2013-09-30 14:20:51 -070010#endif
Kyle Moffette820a132011-03-15 11:23:47 -040011#include <div64.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>
York Sun5614e712013-09-30 09:22:09 -070015#include <asm/io.h>
Kumar Gala58e5e9a2008-08-26 15:01:29 -050016
Kyle Moffette820a132011-03-15 11:23:47 -040017/* To avoid 64-bit full-divides, we factor this here */
Kyle Moffetta2879632011-04-14 13:39:30 -040018#define ULL_2E12 2000000000000ULL
19#define UL_5POW12 244140625UL
20#define UL_2POW13 (1UL << 13)
Kyle Moffette820a132011-03-15 11:23:47 -040021
Kyle Moffetta2879632011-04-14 13:39:30 -040022#define ULL_8FS 0xFFFFFFFFULL
Kyle Moffette820a132011-03-15 11:23:47 -040023
York Sun66869f92015-03-19 09:30:26 -070024u32 fsl_ddr_get_version(unsigned int ctrl_num)
York Sun34e026f2014-03-27 17:54:47 -070025{
26 struct ccsr_ddr __iomem *ddr;
27 u32 ver_major_minor_errata;
28
York Sun66869f92015-03-19 09:30:26 -070029 switch (ctrl_num) {
30 case 0:
31 ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
32 break;
33#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 1)
34 case 1:
35 ddr = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
36 break;
37#endif
38#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 2)
39 case 2:
40 ddr = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
41 break;
42#endif
43#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 3)
44 case 3:
45 ddr = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
46 break;
47#endif
48 default:
49 printf("%s unexpected ctrl_num = %u\n", __func__, ctrl_num);
50 return 0;
51 }
York Sun34e026f2014-03-27 17:54:47 -070052 ver_major_minor_errata = (ddr_in32(&ddr->ip_rev1) & 0xFFFF) << 8;
53 ver_major_minor_errata |= (ddr_in32(&ddr->ip_rev2) & 0xFF00) >> 8;
54
55 return ver_major_minor_errata;
56}
57
Kumar Gala58e5e9a2008-08-26 15:01:29 -050058/*
York Sun905acde2011-08-26 11:32:42 -070059 * Round up mclk_ps to nearest 1 ps in memory controller code
60 * if the error is 0.5ps or more.
Kumar Gala58e5e9a2008-08-26 15:01:29 -050061 *
62 * If an imprecise data rate is too high due to rounding error
63 * propagation, compute a suitably rounded mclk_ps to compute
64 * a working memory controller configuration.
65 */
York Sun03e664d2015-01-06 13:18:50 -080066unsigned int get_memory_clk_period_ps(const unsigned int ctrl_num)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050067{
York Sun03e664d2015-01-06 13:18:50 -080068 unsigned int data_rate = get_ddr_freq(ctrl_num);
Kyle Moffette820a132011-03-15 11:23:47 -040069 unsigned int result;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050070
Kyle Moffette820a132011-03-15 11:23:47 -040071 /* Round to nearest 10ps, being careful about 64-bit multiply/divide */
York Sun905acde2011-08-26 11:32:42 -070072 unsigned long long rem, mclk_ps = ULL_2E12;
Kyle Moffette820a132011-03-15 11:23:47 -040073
74 /* Now perform the big divide, the result fits in 32-bits */
York Sun905acde2011-08-26 11:32:42 -070075 rem = do_div(mclk_ps, data_rate);
76 result = (rem >= (data_rate >> 1)) ? mclk_ps + 1 : mclk_ps;
Kyle Moffette820a132011-03-15 11:23:47 -040077
York Sun905acde2011-08-26 11:32:42 -070078 return result;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050079}
80
81/* Convert picoseconds into DRAM clock cycles (rounding up if needed). */
York Sun03e664d2015-01-06 13:18:50 -080082unsigned int picos_to_mclk(const unsigned int ctrl_num, unsigned int picos)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050083{
Kyle Moffette820a132011-03-15 11:23:47 -040084 unsigned long long clks, clks_rem;
York Sun03e664d2015-01-06 13:18:50 -080085 unsigned long data_rate = get_ddr_freq(ctrl_num);
Kumar Gala58e5e9a2008-08-26 15:01:29 -050086
Kyle Moffette820a132011-03-15 11:23:47 -040087 /* Short circuit for zero picos */
Kumar Gala58e5e9a2008-08-26 15:01:29 -050088 if (!picos)
89 return 0;
90
Kyle Moffette820a132011-03-15 11:23:47 -040091 /* First multiply the time by the data rate (32x32 => 64) */
York Sun905acde2011-08-26 11:32:42 -070092 clks = picos * (unsigned long long)data_rate;
Kyle Moffette820a132011-03-15 11:23:47 -040093 /*
94 * Now divide by 5^12 and track the 32-bit remainder, then divide
95 * by 2*(2^12) using shifts (and updating the remainder).
96 */
Kyle Moffetta2879632011-04-14 13:39:30 -040097 clks_rem = do_div(clks, UL_5POW12);
York Sun905acde2011-08-26 11:32:42 -070098 clks_rem += (clks & (UL_2POW13-1)) * UL_5POW12;
Kyle Moffette820a132011-03-15 11:23:47 -040099 clks >>= 13;
100
York Sun905acde2011-08-26 11:32:42 -0700101 /* If we had a remainder greater than the 1ps error, then round up */
102 if (clks_rem > data_rate)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500103 clks++;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500104
Kyle Moffette820a132011-03-15 11:23:47 -0400105 /* Clamp to the maximum representable value */
Kyle Moffetta2879632011-04-14 13:39:30 -0400106 if (clks > ULL_8FS)
107 clks = ULL_8FS;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500108 return (unsigned int) clks;
109}
110
York Sun03e664d2015-01-06 13:18:50 -0800111unsigned int mclk_to_picos(const unsigned int ctrl_num, unsigned int mclk)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500112{
York Sun03e664d2015-01-06 13:18:50 -0800113 return get_memory_clk_period_ps(ctrl_num) * mclk;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500114}
115
York Sun9ac4ffb2013-09-30 14:20:51 -0700116#ifdef CONFIG_PPC
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500117void
118__fsl_ddr_set_lawbar(const common_timing_params_t *memctl_common_params,
York Suna4c66502012-08-17 08:22:39 +0000119 unsigned int law_memctl,
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500120 unsigned int ctrl_num)
121{
Kumar Galae7563af2009-06-11 23:42:35 -0500122 unsigned long long base = memctl_common_params->base_address;
123 unsigned long long size = memctl_common_params->total_mem;
124
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500125 /*
126 * If no DIMMs on this controller, do not proceed any further.
127 */
128 if (!memctl_common_params->ndimms_present) {
129 return;
130 }
131
Kumar Galae7563af2009-06-11 23:42:35 -0500132#if !defined(CONFIG_PHYS_64BIT)
133 if (base >= CONFIG_MAX_MEM_MAPPED)
134 return;
135 if ((base + size) >= CONFIG_MAX_MEM_MAPPED)
136 size = CONFIG_MAX_MEM_MAPPED - base;
137#endif
York Suna4c66502012-08-17 08:22:39 +0000138 if (set_ddr_laws(base, size, law_memctl) < 0) {
139 printf("%s: ERROR (ctrl #%d, TRGT ID=%x)\n", __func__, ctrl_num,
140 law_memctl);
141 return ;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500142 }
York Suna4c66502012-08-17 08:22:39 +0000143 debug("setup ddr law base = 0x%llx, size 0x%llx, TRGT_ID 0x%x\n",
144 base, size, law_memctl);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500145}
146
147__attribute__((weak, alias("__fsl_ddr_set_lawbar"))) void
148fsl_ddr_set_lawbar(const common_timing_params_t *memctl_common_params,
149 unsigned int memctl_interleaved,
150 unsigned int ctrl_num);
York Sun9ac4ffb2013-09-30 14:20:51 -0700151#endif
Peter Tyserd9c147f2009-07-17 10:14:48 -0500152
York Suna4c66502012-08-17 08:22:39 +0000153void fsl_ddr_set_intl3r(const unsigned int granule_size)
154{
155#ifdef CONFIG_E6500
156 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
157 *mcintl3r = 0x80000000 | (granule_size & 0x1f);
158 debug("Enable MCINTL3R with granule size 0x%x\n", granule_size);
159#endif
160}
161
York Suneb539412012-10-08 07:44:25 +0000162u32 fsl_ddr_get_intl3r(void)
163{
164 u32 val = 0;
165#ifdef CONFIG_E6500
166 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
167 val = *mcintl3r;
168#endif
169 return val;
170}
171
York Sun1d71efb2014-08-01 15:51:00 -0700172void print_ddr_info(unsigned int start_ctrl)
Peter Tyserd9c147f2009-07-17 10:14:48 -0500173{
York Sun9a17eb52013-11-18 10:29:32 -0800174 struct ccsr_ddr __iomem *ddr =
175 (struct ccsr_ddr __iomem *)(CONFIG_SYS_FSL_DDR_ADDR);
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500176
York Suna4c66502012-08-17 08:22:39 +0000177#if defined(CONFIG_E6500) && (CONFIG_NUM_DDR_CONTROLLERS == 3)
178 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
179#endif
Peter Tyserd9c147f2009-07-17 10:14:48 -0500180#if (CONFIG_NUM_DDR_CONTROLLERS > 1)
York Sun4e5b1bd2014-02-10 13:59:42 -0800181 uint32_t cs0_config = ddr_in32(&ddr->cs0_config);
Peter Tyserd9c147f2009-07-17 10:14:48 -0500182#endif
York Sun4e5b1bd2014-02-10 13:59:42 -0800183 uint32_t sdram_cfg = ddr_in32(&ddr->sdram_cfg);
Peter Tyserd9c147f2009-07-17 10:14:48 -0500184 int cas_lat;
185
York Sun123922b2012-10-08 07:44:23 +0000186#if CONFIG_NUM_DDR_CONTROLLERS >= 2
York Sun1d71efb2014-08-01 15:51:00 -0700187 if ((!(sdram_cfg & SDRAM_CFG_MEM_EN)) ||
188 (start_ctrl == 1)) {
York Sun5614e712013-09-30 09:22:09 -0700189 ddr = (void __iomem *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sun4e5b1bd2014-02-10 13:59:42 -0800190 sdram_cfg = ddr_in32(&ddr->sdram_cfg);
York Sun123922b2012-10-08 07:44:23 +0000191 }
192#endif
193#if CONFIG_NUM_DDR_CONTROLLERS >= 3
York Sun1d71efb2014-08-01 15:51:00 -0700194 if ((!(sdram_cfg & SDRAM_CFG_MEM_EN)) ||
195 (start_ctrl == 2)) {
York Sun5614e712013-09-30 09:22:09 -0700196 ddr = (void __iomem *)CONFIG_SYS_FSL_DDR3_ADDR;
York Sun4e5b1bd2014-02-10 13:59:42 -0800197 sdram_cfg = ddr_in32(&ddr->sdram_cfg);
York Sun123922b2012-10-08 07:44:23 +0000198 }
199#endif
York Sun1d71efb2014-08-01 15:51:00 -0700200
201 if (!(sdram_cfg & SDRAM_CFG_MEM_EN)) {
202 puts(" (DDR not enabled)\n");
203 return;
204 }
205
Peter Tyserd9c147f2009-07-17 10:14:48 -0500206 puts(" (DDR");
207 switch ((sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK) >>
208 SDRAM_CFG_SDRAM_TYPE_SHIFT) {
209 case SDRAM_TYPE_DDR1:
210 puts("1");
211 break;
212 case SDRAM_TYPE_DDR2:
213 puts("2");
214 break;
215 case SDRAM_TYPE_DDR3:
216 puts("3");
217 break;
York Sun34e026f2014-03-27 17:54:47 -0700218 case SDRAM_TYPE_DDR4:
219 puts("4");
220 break;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500221 default:
222 puts("?");
223 break;
224 }
225
226 if (sdram_cfg & SDRAM_CFG_32_BE)
227 puts(", 32-bit");
Poonam Aggrwal0b3b1762011-02-07 15:09:51 +0530228 else if (sdram_cfg & SDRAM_CFG_16_BE)
229 puts(", 16-bit");
Peter Tyserd9c147f2009-07-17 10:14:48 -0500230 else
231 puts(", 64-bit");
232
233 /* Calculate CAS latency based on timing cfg values */
York Sun34e026f2014-03-27 17:54:47 -0700234 cas_lat = ((ddr_in32(&ddr->timing_cfg_1) >> 16) & 0xf);
York Sun66869f92015-03-19 09:30:26 -0700235 if (fsl_ddr_get_version(0) <= 0x40400)
York Sun34e026f2014-03-27 17:54:47 -0700236 cas_lat += 1;
237 else
238 cas_lat += 2;
239 cas_lat += ((ddr_in32(&ddr->timing_cfg_3) >> 12) & 3) << 4;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500240 printf(", CL=%d", cas_lat >> 1);
241 if (cas_lat & 0x1)
242 puts(".5");
243
244 if (sdram_cfg & SDRAM_CFG_ECC_EN)
245 puts(", ECC on)");
246 else
247 puts(", ECC off)");
248
York Suna4c66502012-08-17 08:22:39 +0000249#if (CONFIG_NUM_DDR_CONTROLLERS == 3)
250#ifdef CONFIG_E6500
251 if (*mcintl3r & 0x80000000) {
252 puts("\n");
253 puts(" DDR Controller Interleaving Mode: ");
254 switch (*mcintl3r & 0x1f) {
255 case FSL_DDR_3WAY_1KB_INTERLEAVING:
256 puts("3-way 1KB");
257 break;
258 case FSL_DDR_3WAY_4KB_INTERLEAVING:
259 puts("3-way 4KB");
260 break;
261 case FSL_DDR_3WAY_8KB_INTERLEAVING:
262 puts("3-way 8KB");
263 break;
264 default:
265 puts("3-way UNKNOWN");
266 break;
267 }
268 }
269#endif
270#endif
271#if (CONFIG_NUM_DDR_CONTROLLERS >= 2)
York Sun1d71efb2014-08-01 15:51:00 -0700272 if ((cs0_config & 0x20000000) && (start_ctrl == 0)) {
Peter Tyserd9c147f2009-07-17 10:14:48 -0500273 puts("\n");
274 puts(" DDR Controller Interleaving Mode: ");
275
276 switch ((cs0_config >> 24) & 0xf) {
York Sun6b1e1252014-02-10 13:59:44 -0800277 case FSL_DDR_256B_INTERLEAVING:
278 puts("256B");
279 break;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500280 case FSL_DDR_CACHE_LINE_INTERLEAVING:
281 puts("cache line");
282 break;
283 case FSL_DDR_PAGE_INTERLEAVING:
284 puts("page");
285 break;
286 case FSL_DDR_BANK_INTERLEAVING:
287 puts("bank");
288 break;
289 case FSL_DDR_SUPERBANK_INTERLEAVING:
290 puts("super-bank");
291 break;
292 default:
293 puts("invalid");
294 break;
295 }
296 }
297#endif
298
299 if ((sdram_cfg >> 8) & 0x7f) {
300 puts("\n");
301 puts(" DDR Chip-Select Interleaving Mode: ");
302 switch(sdram_cfg >> 8 & 0x7f) {
303 case FSL_DDR_CS0_CS1_CS2_CS3:
304 puts("CS0+CS1+CS2+CS3");
305 break;
306 case FSL_DDR_CS0_CS1:
307 puts("CS0+CS1");
308 break;
309 case FSL_DDR_CS2_CS3:
310 puts("CS2+CS3");
311 break;
312 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
313 puts("CS0+CS1 and CS2+CS3");
314 break;
315 default:
316 puts("invalid");
317 break;
318 }
319 }
320}
York Sun1d71efb2014-08-01 15:51:00 -0700321
322void __weak detail_board_ddr_info(void)
323{
324 print_ddr_info(0);
325}
326
327void board_add_ram_info(int use_default)
328{
329 detail_board_ddr_info();
330}
York Sune32d59a2015-01-06 13:18:55 -0800331
332#ifdef CONFIG_FSL_DDR_SYNC_REFRESH
333#define DDRC_DEBUG20_INIT_DONE 0x80000000
334#define DDRC_DEBUG2_RF 0x00000040
335void fsl_ddr_sync_memctl_refresh(unsigned int first_ctrl,
336 unsigned int last_ctrl)
337{
338 unsigned int i;
339 u32 ddrc_debug20;
340 u32 ddrc_debug2[CONFIG_NUM_DDR_CONTROLLERS] = {};
341 u32 *ddrc_debug2_p[CONFIG_NUM_DDR_CONTROLLERS] = {};
342 struct ccsr_ddr __iomem *ddr;
343
344 for (i = first_ctrl; i <= last_ctrl; i++) {
345 switch (i) {
346 case 0:
347 ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
348 break;
349#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 1)
350 case 1:
351 ddr = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
352 break;
353#endif
354#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 2)
355 case 2:
356 ddr = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
357 break;
358#endif
359#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 3)
360 case 3:
361 ddr = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
362 break;
363#endif
364 default:
365 printf("%s unexpected ctrl = %u\n", __func__, i);
366 return;
367 }
368 ddrc_debug20 = ddr_in32(&ddr->debug[19]);
369 ddrc_debug2_p[i] = &ddr->debug[1];
370 while (!(ddrc_debug20 & DDRC_DEBUG20_INIT_DONE)) {
371 /* keep polling until DDRC init is done */
372 udelay(100);
373 ddrc_debug20 = ddr_in32(&ddr->debug[19]);
374 }
375 ddrc_debug2[i] = ddr_in32(&ddr->debug[1]) | DDRC_DEBUG2_RF;
376 }
377 /*
378 * Sync refresh
379 * This is put together to make sure the refresh reqeusts are sent
380 * closely to each other.
381 */
382 for (i = first_ctrl; i <= last_ctrl; i++)
383 ddr_out32(ddrc_debug2_p[i], ddrc_debug2[i]);
384}
385#endif /* CONFIG_FSL_DDR_SYNC_REFRESH */
York Sun61bd2f72015-11-04 09:53:10 -0800386
387void remove_unused_controllers(fsl_ddr_info_t *info)
388{
389#ifdef CONFIG_FSL_LSCH3
390 int i;
391 u64 nodeid;
392 void *hnf_sam_ctrl = (void *)(CCI_HN_F_0_BASE + CCN_HN_F_SAM_CTL);
393 bool ddr0_used = false;
394 bool ddr1_used = false;
395
396 for (i = 0; i < 8; i++) {
397 nodeid = in_le64(hnf_sam_ctrl) & CCN_HN_F_SAM_NODEID_MASK;
398 if (nodeid == CCN_HN_F_SAM_NODEID_DDR0) {
399 ddr0_used = true;
400 } else if (nodeid == CCN_HN_F_SAM_NODEID_DDR1) {
401 ddr1_used = true;
402 } else {
403 printf("Unknown nodeid in HN-F SAM control: 0x%llx\n",
404 nodeid);
405 }
406 hnf_sam_ctrl += (CCI_HN_F_1_BASE - CCI_HN_F_0_BASE);
407 }
408 if (!ddr0_used && !ddr1_used) {
409 printf("Invalid configuration in HN-F SAM control\n");
410 return;
411 }
412
413 if (!ddr0_used && info->first_ctrl == 0) {
414 info->first_ctrl = 1;
415 info->num_ctrls = 1;
416 debug("First DDR controller disabled\n");
417 return;
418 }
419
420 if (!ddr1_used && info->first_ctrl + info->num_ctrls > 1) {
421 info->num_ctrls = 1;
422 debug("Second DDR controller disabled\n");
423 }
424#endif
425}