blob: f29d49da0e8534845a1f021eba54129c51399e46 [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>
Simon Glass6e2941d2017-05-17 08:23:06 -060016#if defined(CONFIG_FSL_LSCH2) || defined(CONFIG_FSL_LSCH3)
17#include <asm/arch/clock.h>
18#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -050019
Kyle Moffette820a132011-03-15 11:23:47 -040020/* To avoid 64-bit full-divides, we factor this here */
Kyle Moffetta2879632011-04-14 13:39:30 -040021#define ULL_2E12 2000000000000ULL
22#define UL_5POW12 244140625UL
23#define UL_2POW13 (1UL << 13)
Kyle Moffette820a132011-03-15 11:23:47 -040024
Kyle Moffetta2879632011-04-14 13:39:30 -040025#define ULL_8FS 0xFFFFFFFFULL
Kyle Moffette820a132011-03-15 11:23:47 -040026
York Sun66869f92015-03-19 09:30:26 -070027u32 fsl_ddr_get_version(unsigned int ctrl_num)
York Sun34e026f2014-03-27 17:54:47 -070028{
29 struct ccsr_ddr __iomem *ddr;
30 u32 ver_major_minor_errata;
31
York Sun66869f92015-03-19 09:30:26 -070032 switch (ctrl_num) {
33 case 0:
34 ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
35 break;
York Sun51370d52016-12-28 08:43:45 -080036#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sun66869f92015-03-19 09:30:26 -070037 case 1:
38 ddr = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
39 break;
40#endif
York Sun51370d52016-12-28 08:43:45 -080041#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Sun66869f92015-03-19 09:30:26 -070042 case 2:
43 ddr = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
44 break;
45#endif
York Sun51370d52016-12-28 08:43:45 -080046#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Sun66869f92015-03-19 09:30:26 -070047 case 3:
48 ddr = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
49 break;
50#endif
51 default:
52 printf("%s unexpected ctrl_num = %u\n", __func__, ctrl_num);
53 return 0;
54 }
York Sun34e026f2014-03-27 17:54:47 -070055 ver_major_minor_errata = (ddr_in32(&ddr->ip_rev1) & 0xFFFF) << 8;
56 ver_major_minor_errata |= (ddr_in32(&ddr->ip_rev2) & 0xFF00) >> 8;
57
58 return ver_major_minor_errata;
59}
60
Kumar Gala58e5e9a2008-08-26 15:01:29 -050061/*
York Sun905acde2011-08-26 11:32:42 -070062 * Round up mclk_ps to nearest 1 ps in memory controller code
63 * if the error is 0.5ps or more.
Kumar Gala58e5e9a2008-08-26 15:01:29 -050064 *
65 * If an imprecise data rate is too high due to rounding error
66 * propagation, compute a suitably rounded mclk_ps to compute
67 * a working memory controller configuration.
68 */
York Sun03e664d2015-01-06 13:18:50 -080069unsigned int get_memory_clk_period_ps(const unsigned int ctrl_num)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050070{
York Sun03e664d2015-01-06 13:18:50 -080071 unsigned int data_rate = get_ddr_freq(ctrl_num);
Kyle Moffette820a132011-03-15 11:23:47 -040072 unsigned int result;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050073
Kyle Moffette820a132011-03-15 11:23:47 -040074 /* Round to nearest 10ps, being careful about 64-bit multiply/divide */
York Sun905acde2011-08-26 11:32:42 -070075 unsigned long long rem, mclk_ps = ULL_2E12;
Kyle Moffette820a132011-03-15 11:23:47 -040076
77 /* Now perform the big divide, the result fits in 32-bits */
York Sun905acde2011-08-26 11:32:42 -070078 rem = do_div(mclk_ps, data_rate);
79 result = (rem >= (data_rate >> 1)) ? mclk_ps + 1 : mclk_ps;
Kyle Moffette820a132011-03-15 11:23:47 -040080
York Sun905acde2011-08-26 11:32:42 -070081 return result;
Kumar Gala58e5e9a2008-08-26 15:01:29 -050082}
83
84/* Convert picoseconds into DRAM clock cycles (rounding up if needed). */
York Sun03e664d2015-01-06 13:18:50 -080085unsigned int picos_to_mclk(const unsigned int ctrl_num, unsigned int picos)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050086{
Kyle Moffette820a132011-03-15 11:23:47 -040087 unsigned long long clks, clks_rem;
York Sun03e664d2015-01-06 13:18:50 -080088 unsigned long data_rate = get_ddr_freq(ctrl_num);
Kumar Gala58e5e9a2008-08-26 15:01:29 -050089
Kyle Moffette820a132011-03-15 11:23:47 -040090 /* Short circuit for zero picos */
Kumar Gala58e5e9a2008-08-26 15:01:29 -050091 if (!picos)
92 return 0;
93
Kyle Moffette820a132011-03-15 11:23:47 -040094 /* First multiply the time by the data rate (32x32 => 64) */
York Sun905acde2011-08-26 11:32:42 -070095 clks = picos * (unsigned long long)data_rate;
Kyle Moffette820a132011-03-15 11:23:47 -040096 /*
97 * Now divide by 5^12 and track the 32-bit remainder, then divide
98 * by 2*(2^12) using shifts (and updating the remainder).
99 */
Kyle Moffetta2879632011-04-14 13:39:30 -0400100 clks_rem = do_div(clks, UL_5POW12);
York Sun905acde2011-08-26 11:32:42 -0700101 clks_rem += (clks & (UL_2POW13-1)) * UL_5POW12;
Kyle Moffette820a132011-03-15 11:23:47 -0400102 clks >>= 13;
103
York Sun905acde2011-08-26 11:32:42 -0700104 /* If we had a remainder greater than the 1ps error, then round up */
105 if (clks_rem > data_rate)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500106 clks++;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500107
Kyle Moffette820a132011-03-15 11:23:47 -0400108 /* Clamp to the maximum representable value */
Kyle Moffetta2879632011-04-14 13:39:30 -0400109 if (clks > ULL_8FS)
110 clks = ULL_8FS;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500111 return (unsigned int) clks;
112}
113
York Sun03e664d2015-01-06 13:18:50 -0800114unsigned int mclk_to_picos(const unsigned int ctrl_num, unsigned int mclk)
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500115{
York Sun03e664d2015-01-06 13:18:50 -0800116 return get_memory_clk_period_ps(ctrl_num) * mclk;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500117}
118
York Sun9ac4ffb2013-09-30 14:20:51 -0700119#ifdef CONFIG_PPC
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500120void
121__fsl_ddr_set_lawbar(const common_timing_params_t *memctl_common_params,
York Suna4c66502012-08-17 08:22:39 +0000122 unsigned int law_memctl,
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500123 unsigned int ctrl_num)
124{
Kumar Galae7563af2009-06-11 23:42:35 -0500125 unsigned long long base = memctl_common_params->base_address;
126 unsigned long long size = memctl_common_params->total_mem;
127
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500128 /*
129 * If no DIMMs on this controller, do not proceed any further.
130 */
131 if (!memctl_common_params->ndimms_present) {
132 return;
133 }
134
Kumar Galae7563af2009-06-11 23:42:35 -0500135#if !defined(CONFIG_PHYS_64BIT)
136 if (base >= CONFIG_MAX_MEM_MAPPED)
137 return;
138 if ((base + size) >= CONFIG_MAX_MEM_MAPPED)
139 size = CONFIG_MAX_MEM_MAPPED - base;
140#endif
York Suna4c66502012-08-17 08:22:39 +0000141 if (set_ddr_laws(base, size, law_memctl) < 0) {
142 printf("%s: ERROR (ctrl #%d, TRGT ID=%x)\n", __func__, ctrl_num,
143 law_memctl);
144 return ;
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500145 }
York Suna4c66502012-08-17 08:22:39 +0000146 debug("setup ddr law base = 0x%llx, size 0x%llx, TRGT_ID 0x%x\n",
147 base, size, law_memctl);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500148}
149
150__attribute__((weak, alias("__fsl_ddr_set_lawbar"))) void
151fsl_ddr_set_lawbar(const common_timing_params_t *memctl_common_params,
152 unsigned int memctl_interleaved,
153 unsigned int ctrl_num);
York Sun9ac4ffb2013-09-30 14:20:51 -0700154#endif
Peter Tyserd9c147f2009-07-17 10:14:48 -0500155
York Suna4c66502012-08-17 08:22:39 +0000156void fsl_ddr_set_intl3r(const unsigned int granule_size)
157{
158#ifdef CONFIG_E6500
159 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
160 *mcintl3r = 0x80000000 | (granule_size & 0x1f);
161 debug("Enable MCINTL3R with granule size 0x%x\n", granule_size);
162#endif
163}
164
York Suneb539412012-10-08 07:44:25 +0000165u32 fsl_ddr_get_intl3r(void)
166{
167 u32 val = 0;
168#ifdef CONFIG_E6500
169 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
170 val = *mcintl3r;
171#endif
172 return val;
173}
174
York Sun1d71efb2014-08-01 15:51:00 -0700175void print_ddr_info(unsigned int start_ctrl)
Peter Tyserd9c147f2009-07-17 10:14:48 -0500176{
York Sun9a17eb52013-11-18 10:29:32 -0800177 struct ccsr_ddr __iomem *ddr =
178 (struct ccsr_ddr __iomem *)(CONFIG_SYS_FSL_DDR_ADDR);
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500179
York Sun51370d52016-12-28 08:43:45 -0800180#if defined(CONFIG_E6500) && (CONFIG_SYS_NUM_DDR_CTLRS == 3)
York Suna4c66502012-08-17 08:22:39 +0000181 u32 *mcintl3r = (void *) (CONFIG_SYS_IMMR + 0x18004);
182#endif
York Sun51370d52016-12-28 08:43:45 -0800183#if (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sun4e5b1bd2014-02-10 13:59:42 -0800184 uint32_t cs0_config = ddr_in32(&ddr->cs0_config);
Peter Tyserd9c147f2009-07-17 10:14:48 -0500185#endif
York Sun4e5b1bd2014-02-10 13:59:42 -0800186 uint32_t sdram_cfg = ddr_in32(&ddr->sdram_cfg);
Peter Tyserd9c147f2009-07-17 10:14:48 -0500187 int cas_lat;
188
York Sun51370d52016-12-28 08:43:45 -0800189#if CONFIG_SYS_NUM_DDR_CTLRS >= 2
York Sun1d71efb2014-08-01 15:51:00 -0700190 if ((!(sdram_cfg & SDRAM_CFG_MEM_EN)) ||
191 (start_ctrl == 1)) {
York Sun5614e712013-09-30 09:22:09 -0700192 ddr = (void __iomem *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sun4e5b1bd2014-02-10 13:59:42 -0800193 sdram_cfg = ddr_in32(&ddr->sdram_cfg);
York Sun123922b2012-10-08 07:44:23 +0000194 }
195#endif
York Sun51370d52016-12-28 08:43:45 -0800196#if CONFIG_SYS_NUM_DDR_CTLRS >= 3
York Sun1d71efb2014-08-01 15:51:00 -0700197 if ((!(sdram_cfg & SDRAM_CFG_MEM_EN)) ||
198 (start_ctrl == 2)) {
York Sun5614e712013-09-30 09:22:09 -0700199 ddr = (void __iomem *)CONFIG_SYS_FSL_DDR3_ADDR;
York Sun4e5b1bd2014-02-10 13:59:42 -0800200 sdram_cfg = ddr_in32(&ddr->sdram_cfg);
York Sun123922b2012-10-08 07:44:23 +0000201 }
202#endif
York Sun1d71efb2014-08-01 15:51:00 -0700203
204 if (!(sdram_cfg & SDRAM_CFG_MEM_EN)) {
205 puts(" (DDR not enabled)\n");
206 return;
207 }
208
Peter Tyserd9c147f2009-07-17 10:14:48 -0500209 puts(" (DDR");
210 switch ((sdram_cfg & SDRAM_CFG_SDRAM_TYPE_MASK) >>
211 SDRAM_CFG_SDRAM_TYPE_SHIFT) {
212 case SDRAM_TYPE_DDR1:
213 puts("1");
214 break;
215 case SDRAM_TYPE_DDR2:
216 puts("2");
217 break;
218 case SDRAM_TYPE_DDR3:
219 puts("3");
220 break;
York Sun34e026f2014-03-27 17:54:47 -0700221 case SDRAM_TYPE_DDR4:
222 puts("4");
223 break;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500224 default:
225 puts("?");
226 break;
227 }
228
229 if (sdram_cfg & SDRAM_CFG_32_BE)
230 puts(", 32-bit");
Poonam Aggrwal0b3b1762011-02-07 15:09:51 +0530231 else if (sdram_cfg & SDRAM_CFG_16_BE)
232 puts(", 16-bit");
Peter Tyserd9c147f2009-07-17 10:14:48 -0500233 else
234 puts(", 64-bit");
235
236 /* Calculate CAS latency based on timing cfg values */
York Sun34e026f2014-03-27 17:54:47 -0700237 cas_lat = ((ddr_in32(&ddr->timing_cfg_1) >> 16) & 0xf);
York Sun66869f92015-03-19 09:30:26 -0700238 if (fsl_ddr_get_version(0) <= 0x40400)
York Sun34e026f2014-03-27 17:54:47 -0700239 cas_lat += 1;
240 else
241 cas_lat += 2;
242 cas_lat += ((ddr_in32(&ddr->timing_cfg_3) >> 12) & 3) << 4;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500243 printf(", CL=%d", cas_lat >> 1);
244 if (cas_lat & 0x1)
245 puts(".5");
246
247 if (sdram_cfg & SDRAM_CFG_ECC_EN)
248 puts(", ECC on)");
249 else
250 puts(", ECC off)");
251
York Sun51370d52016-12-28 08:43:45 -0800252#if (CONFIG_SYS_NUM_DDR_CTLRS == 3)
York Suna4c66502012-08-17 08:22:39 +0000253#ifdef CONFIG_E6500
254 if (*mcintl3r & 0x80000000) {
255 puts("\n");
256 puts(" DDR Controller Interleaving Mode: ");
257 switch (*mcintl3r & 0x1f) {
258 case FSL_DDR_3WAY_1KB_INTERLEAVING:
259 puts("3-way 1KB");
260 break;
261 case FSL_DDR_3WAY_4KB_INTERLEAVING:
262 puts("3-way 4KB");
263 break;
264 case FSL_DDR_3WAY_8KB_INTERLEAVING:
265 puts("3-way 8KB");
266 break;
267 default:
268 puts("3-way UNKNOWN");
269 break;
270 }
271 }
272#endif
273#endif
York Sun51370d52016-12-28 08:43:45 -0800274#if (CONFIG_SYS_NUM_DDR_CTLRS >= 2)
York Sun1d71efb2014-08-01 15:51:00 -0700275 if ((cs0_config & 0x20000000) && (start_ctrl == 0)) {
Peter Tyserd9c147f2009-07-17 10:14:48 -0500276 puts("\n");
277 puts(" DDR Controller Interleaving Mode: ");
278
279 switch ((cs0_config >> 24) & 0xf) {
York Sun6b1e1252014-02-10 13:59:44 -0800280 case FSL_DDR_256B_INTERLEAVING:
281 puts("256B");
282 break;
Peter Tyserd9c147f2009-07-17 10:14:48 -0500283 case FSL_DDR_CACHE_LINE_INTERLEAVING:
284 puts("cache line");
285 break;
286 case FSL_DDR_PAGE_INTERLEAVING:
287 puts("page");
288 break;
289 case FSL_DDR_BANK_INTERLEAVING:
290 puts("bank");
291 break;
292 case FSL_DDR_SUPERBANK_INTERLEAVING:
293 puts("super-bank");
294 break;
295 default:
296 puts("invalid");
297 break;
298 }
299 }
300#endif
301
302 if ((sdram_cfg >> 8) & 0x7f) {
303 puts("\n");
304 puts(" DDR Chip-Select Interleaving Mode: ");
305 switch(sdram_cfg >> 8 & 0x7f) {
306 case FSL_DDR_CS0_CS1_CS2_CS3:
307 puts("CS0+CS1+CS2+CS3");
308 break;
309 case FSL_DDR_CS0_CS1:
310 puts("CS0+CS1");
311 break;
312 case FSL_DDR_CS2_CS3:
313 puts("CS2+CS3");
314 break;
315 case FSL_DDR_CS0_CS1_AND_CS2_CS3:
316 puts("CS0+CS1 and CS2+CS3");
317 break;
318 default:
319 puts("invalid");
320 break;
321 }
322 }
323}
York Sun1d71efb2014-08-01 15:51:00 -0700324
325void __weak detail_board_ddr_info(void)
326{
327 print_ddr_info(0);
328}
329
330void board_add_ram_info(int use_default)
331{
332 detail_board_ddr_info();
333}
York Sune32d59a2015-01-06 13:18:55 -0800334
335#ifdef CONFIG_FSL_DDR_SYNC_REFRESH
336#define DDRC_DEBUG20_INIT_DONE 0x80000000
337#define DDRC_DEBUG2_RF 0x00000040
338void fsl_ddr_sync_memctl_refresh(unsigned int first_ctrl,
339 unsigned int last_ctrl)
340{
341 unsigned int i;
342 u32 ddrc_debug20;
York Sun51370d52016-12-28 08:43:45 -0800343 u32 ddrc_debug2[CONFIG_SYS_NUM_DDR_CTLRS] = {};
344 u32 *ddrc_debug2_p[CONFIG_SYS_NUM_DDR_CTLRS] = {};
York Sune32d59a2015-01-06 13:18:55 -0800345 struct ccsr_ddr __iomem *ddr;
346
347 for (i = first_ctrl; i <= last_ctrl; i++) {
348 switch (i) {
349 case 0:
350 ddr = (void *)CONFIG_SYS_FSL_DDR_ADDR;
351 break;
York Sun51370d52016-12-28 08:43:45 -0800352#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sune32d59a2015-01-06 13:18:55 -0800353 case 1:
354 ddr = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
355 break;
356#endif
York Sun51370d52016-12-28 08:43:45 -0800357#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Sune32d59a2015-01-06 13:18:55 -0800358 case 2:
359 ddr = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
360 break;
361#endif
York Sun51370d52016-12-28 08:43:45 -0800362#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Sune32d59a2015-01-06 13:18:55 -0800363 case 3:
364 ddr = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
365 break;
366#endif
367 default:
368 printf("%s unexpected ctrl = %u\n", __func__, i);
369 return;
370 }
371 ddrc_debug20 = ddr_in32(&ddr->debug[19]);
372 ddrc_debug2_p[i] = &ddr->debug[1];
373 while (!(ddrc_debug20 & DDRC_DEBUG20_INIT_DONE)) {
374 /* keep polling until DDRC init is done */
375 udelay(100);
376 ddrc_debug20 = ddr_in32(&ddr->debug[19]);
377 }
378 ddrc_debug2[i] = ddr_in32(&ddr->debug[1]) | DDRC_DEBUG2_RF;
379 }
380 /*
381 * Sync refresh
382 * This is put together to make sure the refresh reqeusts are sent
383 * closely to each other.
384 */
385 for (i = first_ctrl; i <= last_ctrl; i++)
386 ddr_out32(ddrc_debug2_p[i], ddrc_debug2[i]);
387}
388#endif /* CONFIG_FSL_DDR_SYNC_REFRESH */
York Sun61bd2f72015-11-04 09:53:10 -0800389
390void remove_unused_controllers(fsl_ddr_info_t *info)
391{
392#ifdef CONFIG_FSL_LSCH3
393 int i;
394 u64 nodeid;
395 void *hnf_sam_ctrl = (void *)(CCI_HN_F_0_BASE + CCN_HN_F_SAM_CTL);
396 bool ddr0_used = false;
397 bool ddr1_used = false;
398
399 for (i = 0; i < 8; i++) {
400 nodeid = in_le64(hnf_sam_ctrl) & CCN_HN_F_SAM_NODEID_MASK;
401 if (nodeid == CCN_HN_F_SAM_NODEID_DDR0) {
402 ddr0_used = true;
403 } else if (nodeid == CCN_HN_F_SAM_NODEID_DDR1) {
404 ddr1_used = true;
405 } else {
406 printf("Unknown nodeid in HN-F SAM control: 0x%llx\n",
407 nodeid);
408 }
409 hnf_sam_ctrl += (CCI_HN_F_1_BASE - CCI_HN_F_0_BASE);
410 }
411 if (!ddr0_used && !ddr1_used) {
412 printf("Invalid configuration in HN-F SAM control\n");
413 return;
414 }
415
416 if (!ddr0_used && info->first_ctrl == 0) {
417 info->first_ctrl = 1;
418 info->num_ctrls = 1;
419 debug("First DDR controller disabled\n");
420 return;
421 }
422
423 if (!ddr1_used && info->first_ctrl + info->num_ctrls > 1) {
424 info->num_ctrls = 1;
425 debug("Second DDR controller disabled\n");
426 }
427#endif
428}