blob: 12e8e10d483cacc7493c55b24f57fce2f88240cd [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
Dipen Dudhat5d51bf92011-01-19 12:46:27 +05302 * Copyright 2004,2007-2011 Freescale Semiconductor, Inc.
wdenk9c53f402003-10-15 23:53:47 +00003 * (C) Copyright 2002, 2003 Motorola Inc.
4 * Xianghua Xiao (X.Xiao@motorola.com)
5 *
6 * (C) Copyright 2000
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenk9c53f402003-10-15 23:53:47 +000010 */
11
Andy Flemingfecff2b2008-08-31 16:33:26 -050012#include <config.h>
wdenk9c53f402003-10-15 23:53:47 +000013#include <common.h>
14#include <watchdog.h>
15#include <command.h>
Andy Fleming6843a6e2008-10-30 16:51:33 -050016#include <fsl_esdhc.h>
wdenk9c53f402003-10-15 23:53:47 +000017#include <asm/cache.h>
Sergei Poselenovddc1a472008-06-06 15:42:40 +020018#include <asm/io.h>
Becky Bruceee888da2010-06-17 11:37:25 -050019#include <asm/mmu.h>
York Sun37562f62013-10-22 12:39:02 -070020#include <fsl_ifc.h>
Becky Bruceee888da2010-06-17 11:37:25 -050021#include <asm/fsl_law.h>
Becky Bruce5e35d8a2010-12-17 17:17:56 -060022#include <asm/fsl_lbc.h>
York Sunc41b7442010-09-28 15:20:33 -070023#include <post.h>
24#include <asm/processor.h>
York Sunf0626592013-09-30 09:22:09 -070025#include <fsl_ddr_sdram.h>
wdenk9c53f402003-10-15 23:53:47 +000026
James Yang957b1912008-02-08 16:44:53 -060027DECLARE_GLOBAL_DATA_PTR;
28
Ira W. Snydera85994c2011-11-21 13:20:32 -080029/*
30 * Default board reset function
31 */
32static void
33__board_reset(void)
34{
35 /* Do nothing */
36}
37void board_reset(void) __attribute__((weak, alias("__board_reset")));
38
wdenk9c53f402003-10-15 23:53:47 +000039int checkcpu (void)
40{
wdenka445ddf2004-06-09 00:34:46 +000041 sys_info_t sysinfo;
wdenka445ddf2004-06-09 00:34:46 +000042 uint pvr, svr;
43 uint ver;
44 uint major, minor;
Kumar Gala8ddf00c2008-06-10 16:53:46 -050045 struct cpu_type *cpu;
Wolfgang Denk20591042008-10-19 02:35:49 +020046 char buf1[32], buf2[32];
York Sunc87e81e2013-06-25 11:37:43 -070047#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
48 ccsr_gur_t __iomem *gur =
49 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
50#endif
York Sun3b5179f2012-10-08 07:44:31 +000051
52 /*
53 * Cornet platforms use ddr sync bit in RCW to indicate sync vs async
54 * mode. Previous platform use ddr ratio to do the same. This
55 * information is only for display here.
56 */
Kumar Galadccd9e32009-03-19 02:46:19 -050057#ifdef CONFIG_FSL_CORENET
York Sun383f6f62012-10-08 07:44:16 +000058#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
York Sun3b5179f2012-10-08 07:44:31 +000059 u32 ddr_sync = 0; /* only async mode is supported */
York Sun383f6f62012-10-08 07:44:16 +000060#else
York Sun3b5179f2012-10-08 07:44:31 +000061 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080062 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
York Sun383f6f62012-10-08 07:44:16 +000063#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
York Sun3b5179f2012-10-08 07:44:31 +000064#else /* CONFIG_FSL_CORENET */
65#ifdef CONFIG_DDR_CLK_FREQ
66 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
67 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala54b68102008-05-29 01:21:24 -050068#else
69 u32 ddr_ratio = 0;
Kumar Galadccd9e32009-03-19 02:46:19 -050070#endif /* CONFIG_DDR_CLK_FREQ */
York Sun3b5179f2012-10-08 07:44:31 +000071#endif /* CONFIG_FSL_CORENET */
72
Timur Tabi47289422011-08-05 16:15:24 -050073 unsigned int i, core, nr_cores = cpu_numcores();
74 u32 mask = cpu_mask();
wdenk9c53f402003-10-15 23:53:47 +000075
wdenka445ddf2004-06-09 00:34:46 +000076 svr = get_svr();
wdenka445ddf2004-06-09 00:34:46 +000077 major = SVR_MAJ(svr);
78 minor = SVR_MIN(svr);
79
Poonam Aggrwal4baef822009-07-31 12:08:14 +053080 if (cpu_numcores() > 1) {
Poonam Aggrwal36a68432009-09-03 19:42:40 +053081#ifndef CONFIG_MP
82 puts("Unicore software on multiprocessor system!!\n"
83 "To enable mutlticore build define CONFIG_MP\n");
84#endif
Kim Phillips2ecbfeb2010-08-09 18:39:57 -050085 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal4baef822009-07-31 12:08:14 +053086 printf("CPU%d: ", pic->whoami);
87 } else {
88 puts("CPU: ");
89 }
Andy Flemingf5740972008-02-06 01:19:40 -060090
Simon Glassa8b57392012-12-13 20:48:48 +000091 cpu = gd->arch.cpu;
Andy Flemingf5740972008-02-06 01:19:40 -060092
Poonam Aggrwalda6e1ca2009-09-02 13:35:21 +053093 puts(cpu->name);
94 if (IS_E_PROCESSOR(svr))
95 puts("E");
Andy Flemingf5740972008-02-06 01:19:40 -060096
wdenka445ddf2004-06-09 00:34:46 +000097 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk9c53f402003-10-15 23:53:47 +000098
wdenk3f3262b2005-03-15 22:56:53 +000099 pvr = get_pvr();
100 ver = PVR_VER(pvr);
101 major = PVR_MAJ(pvr);
102 minor = PVR_MIN(pvr);
103
104 printf("Core: ");
Kumar Galae222ed32011-07-25 09:28:39 -0500105 switch(ver) {
106 case PVR_VER_E500_V1:
107 case PVR_VER_E500_V2:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300108 puts("e500");
Kumar Galae222ed32011-07-25 09:28:39 -0500109 break;
110 case PVR_VER_E500MC:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300111 puts("e500mc");
Kumar Galae222ed32011-07-25 09:28:39 -0500112 break;
113 case PVR_VER_E5500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300114 puts("e5500");
Kumar Galae222ed32011-07-25 09:28:39 -0500115 break;
Kumar Galac1abf4a2012-08-17 08:20:23 +0000116 case PVR_VER_E6500:
Fabio Estevamf4c557c2013-04-21 13:11:02 -0300117 puts("e6500");
Kumar Galac1abf4a2012-08-17 08:20:23 +0000118 break;
Kumar Galae222ed32011-07-25 09:28:39 -0500119 default:
Kumar Galabd2985c2009-10-21 13:23:54 -0500120 puts("Unknown");
Kumar Galae222ed32011-07-25 09:28:39 -0500121 break;
wdenk3f3262b2005-03-15 22:56:53 +0000122 }
Kumar Gala9f4a6892008-10-23 01:47:38 -0500123
wdenk3f3262b2005-03-15 22:56:53 +0000124 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
125
York Sun908412d2012-10-08 07:44:10 +0000126 if (nr_cores > CONFIG_MAX_CPUS) {
127 panic("\nUnexpected number of cores: %d, max is %d\n",
128 nr_cores, CONFIG_MAX_CPUS);
129 }
130
wdenka445ddf2004-06-09 00:34:46 +0000131 get_sys_info(&sysinfo);
132
vijay raid84fd502014-04-15 11:34:12 +0530133#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
134 if (sysinfo.diff_sysclk == 1)
135 puts("Single Source Clock Configuration\n");
136#endif
137
Kumar Galaf92794c2009-02-04 09:35:57 -0600138 puts("Clock Configuration:");
Timur Tabi47289422011-08-05 16:15:24 -0500139 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1f79d142009-02-19 00:41:08 +0100140 if (!(i & 3))
141 printf ("\n ");
Timur Tabi47289422011-08-05 16:15:24 -0500142 printf("CPU%d:%-4s MHz, ", core,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530143 strmhz(buf1, sysinfo.freq_processor[core]));
Kumar Galaf92794c2009-02-04 09:35:57 -0600144 }
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530145 printf("\n CCB:%-4s MHz,", strmhz(buf1, sysinfo.freq_systembus));
146 printf("\n");
Kumar Gala54b68102008-05-29 01:21:24 -0500147
Kumar Galadccd9e32009-03-19 02:46:19 -0500148#ifdef CONFIG_FSL_CORENET
149 if (ddr_sync == 1) {
150 printf(" DDR:%-4s MHz (%s MT/s data rate) "
151 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530152 strmhz(buf1, sysinfo.freq_ddrbus/2),
153 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500154 } else {
155 printf(" DDR:%-4s MHz (%s MT/s data rate) "
156 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530157 strmhz(buf1, sysinfo.freq_ddrbus/2),
158 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500159 }
160#else
Kumar Gala07db1702007-12-07 04:59:26 -0600161 switch (ddr_ratio) {
162 case 0x0:
Wolfgang Denk20591042008-10-19 02:35:49 +0200163 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530164 strmhz(buf1, sysinfo.freq_ddrbus/2),
165 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600166 break;
167 case 0x7:
Kumar Galadccd9e32009-03-19 02:46:19 -0500168 printf(" DDR:%-4s MHz (%s MT/s data rate) "
169 "(Synchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530170 strmhz(buf1, sysinfo.freq_ddrbus/2),
171 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600172 break;
173 default:
Kumar Galadccd9e32009-03-19 02:46:19 -0500174 printf(" DDR:%-4s MHz (%s MT/s data rate) "
175 "(Asynchronous), ",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530176 strmhz(buf1, sysinfo.freq_ddrbus/2),
177 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala07db1702007-12-07 04:59:26 -0600178 break;
179 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500180#endif
wdenka445ddf2004-06-09 00:34:46 +0000181
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530182#if defined(CONFIG_FSL_LBC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530183 if (sysinfo.freq_localbus > LCRR_CLKDIV) {
184 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500185 } else {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800186 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530187 sysinfo.freq_localbus);
Kumar Galadccd9e32009-03-19 02:46:19 -0500188 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530189#endif
wdenka445ddf2004-06-09 00:34:46 +0000190
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000191#if defined(CONFIG_FSL_IFC)
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530192 printf("IFC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000193#endif
194
Andy Flemingf5740972008-02-06 01:19:40 -0600195#ifdef CONFIG_CPM2
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530196 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freq_systembus));
Andy Flemingf5740972008-02-06 01:19:40 -0600197#endif
wdenka445ddf2004-06-09 00:34:46 +0000198
Haiying Wang61414682009-05-20 12:30:29 -0400199#ifdef CONFIG_QE
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530200 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freq_qe));
Haiying Wang61414682009-05-20 12:30:29 -0400201#endif
202
Kumar Galadccd9e32009-03-19 02:46:19 -0500203#ifdef CONFIG_SYS_DPAA_FMAN
204 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve3a9ed2f2010-06-17 00:08:29 -0500205 printf(" FMAN%d: %s MHz\n", i + 1,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530206 strmhz(buf1, sysinfo.freq_fman[i]));
Kumar Galadccd9e32009-03-19 02:46:19 -0500207 }
208#endif
209
Haiying Wang09d0aa92012-10-11 07:13:39 +0000210#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530211 printf(" QMAN: %s MHz\n", strmhz(buf1, sysinfo.freq_qman));
Haiying Wang09d0aa92012-10-11 07:13:39 +0000212#endif
213
Kumar Galadccd9e32009-03-19 02:46:19 -0500214#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530215 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freq_pme));
Kumar Galadccd9e32009-03-19 02:46:19 -0500216#endif
217
Shruti Kanetkar81159362013-08-15 11:25:38 -0500218 puts("L1: D-cache 32 KiB enabled\n I-cache 32 KiB enabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000219
York Sunc87e81e2013-06-25 11:37:43 -0700220#ifdef CONFIG_FSL_CORENET
221 /* Display the RCW, so that no one gets confused as to what RCW
222 * we're actually using for this boot.
223 */
224 puts("Reset Configuration Word (RCW):");
225 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
226 u32 rcw = in_be32(&gur->rcwsr[i]);
227
228 if ((i % 4) == 0)
229 printf("\n %08x:", i * 4);
230 printf(" %08x", rcw);
231 }
232 puts("\n");
233#endif
234
wdenk9c53f402003-10-15 23:53:47 +0000235 return 0;
236}
237
238
239/* ------------------------------------------------------------------------- */
240
Mike Frysinger6d1f6982010-10-20 03:41:17 -0400241int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000242{
Kumar Galaaff01532009-09-08 13:46:46 -0500243/* Everything after the first generation of PQ3 parts has RSTCR */
244#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
245 defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
Sergei Poselenov25147422008-05-08 14:17:08 +0200246 unsigned long val, msr;
247
wdenk9c53f402003-10-15 23:53:47 +0000248 /*
249 * Initiate hard reset in debug control register DBCR0
Kumar Galaaff01532009-09-08 13:46:46 -0500250 * Make sure MSR[DE] = 1. This only resets the core.
wdenk9c53f402003-10-15 23:53:47 +0000251 */
Sergei Poselenov25147422008-05-08 14:17:08 +0200252 msr = mfmsr ();
253 msr |= MSR_DE;
254 mtmsr (msr);
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400255
Sergei Poselenov25147422008-05-08 14:17:08 +0200256 val = mfspr(DBCR0);
257 val |= 0x70000000;
258 mtspr(DBCR0,val);
Kumar Galaaff01532009-09-08 13:46:46 -0500259#else
260 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snydera85994c2011-11-21 13:20:32 -0800261
262 /* Attempt board-specific reset */
263 board_reset();
264
265 /* Next try asserting HRESET_REQ */
266 out_be32(&gur->rstcr, 0x2);
Kumar Galaaff01532009-09-08 13:46:46 -0500267 udelay(100);
268#endif
Sergei Poselenov25147422008-05-08 14:17:08 +0200269
wdenk9c53f402003-10-15 23:53:47 +0000270 return 1;
271}
272
273
274/*
275 * Get timebase clock frequency
276 */
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600277#ifndef CONFIG_SYS_FSL_TBCLK_DIV
278#define CONFIG_SYS_FSL_TBCLK_DIV 8
279#endif
Alexander Grafc3468482014-04-11 17:09:45 +0200280__weak unsigned long get_tbclk (void)
wdenk9c53f402003-10-15 23:53:47 +0000281{
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600282 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
283
284 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk9c53f402003-10-15 23:53:47 +0000285}
286
287
288#if defined(CONFIG_WATCHDOG)
289void
wdenk9c53f402003-10-15 23:53:47 +0000290reset_85xx_watchdog(void)
291{
292 /*
293 * Clear TSR(WIS) bit by writing 1
294 */
Mark Marshall10b13c92012-09-09 23:06:03 +0000295 mtspr(SPRN_TSR, TSR_WIS);
wdenk9c53f402003-10-15 23:53:47 +0000296}
Horst Kronstorferf70831e2013-03-13 10:14:05 +0000297
298void
299watchdog_reset(void)
300{
301 int re_enable = disable_interrupts();
302
303 reset_85xx_watchdog();
304 if (re_enable)
305 enable_interrupts();
306}
wdenk9c53f402003-10-15 23:53:47 +0000307#endif /* CONFIG_WATCHDOG */
308
Sergei Poselenovddc1a472008-06-06 15:42:40 +0200309/*
Andy Fleming6843a6e2008-10-30 16:51:33 -0500310 * Initializes on-chip MMC controllers.
311 * to override, implement board_mmc_init()
312 */
313int cpu_mmc_init(bd_t *bis)
314{
315#ifdef CONFIG_FSL_ESDHC
316 return fsl_esdhc_mmc_init(bis);
317#else
318 return 0;
319#endif
320}
Becky Bruceee888da2010-06-17 11:37:25 -0500321
322/*
323 * Print out the state of various machine registers.
Dipen Dudhat00c42942011-01-20 16:29:35 +0530324 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
325 * parameters for IFC and TLBs
Becky Bruceee888da2010-06-17 11:37:25 -0500326 */
327void mpc85xx_reginfo(void)
328{
329 print_tlbcam();
330 print_laws();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530331#if defined(CONFIG_FSL_LBC)
Becky Bruceee888da2010-06-17 11:37:25 -0500332 print_lbc_regs();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530333#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +0530334#ifdef CONFIG_FSL_IFC
335 print_ifc_regs();
336#endif
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530337
Becky Bruceee888da2010-06-17 11:37:25 -0500338}
York Sunc41b7442010-09-28 15:20:33 -0700339
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600340/* Common ddr init for non-corenet fsl 85xx platforms */
341#ifndef CONFIG_FSL_CORENET
Scott Wood095b7122012-09-20 19:02:18 -0500342#if (defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)) && \
343 !defined(CONFIG_SYS_INIT_L2_ADDR)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600344phys_size_t initdram(int board_type)
345{
Alexander Grafc3468482014-04-11 17:09:45 +0200346#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD) || \
347 defined(CONFIG_QEMU_E500)
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800348 return fsl_ddr_sdram_size();
349#else
Mingkai Huabe3a3f2013-04-12 15:56:28 +0800350 return (phys_size_t)CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800351#endif
352}
353#else /* CONFIG_SYS_RAMBOOT */
354phys_size_t initdram(int board_type)
355{
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600356 phys_size_t dram_size = 0;
357
Becky Bruce4212f232010-12-17 17:17:58 -0600358#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600359 {
360 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
361 unsigned int x = 10;
362 unsigned int i;
363
364 /*
365 * Work around to stabilize DDR DLL
366 */
367 out_be32(&gur->ddrdllcr, 0x81000000);
368 asm("sync;isync;msync");
369 udelay(200);
370 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
371 setbits_be32(&gur->devdisr, 0x00010000);
372 for (i = 0; i < x; i++)
373 ;
374 clrbits_be32(&gur->devdisr, 0x00010000);
375 x++;
376 }
377 }
378#endif
379
York Sune73cc042011-06-07 09:42:16 +0800380#if defined(CONFIG_SPD_EEPROM) || \
381 defined(CONFIG_DDR_SPD) || \
382 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600383 dram_size = fsl_ddr_sdram();
384#else
385 dram_size = fixed_sdram();
386#endif
387 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
388 dram_size *= 0x100000;
389
390#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
391 /*
392 * Initialize and enable DDR ECC.
393 */
394 ddr_enable_ecc(dram_size);
395#endif
396
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530397#if defined(CONFIG_FSL_LBC)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600398 /* Some boards also have sdram on the lbc */
Becky Bruceb88d3d02010-12-17 17:17:57 -0600399 lbc_sdram_init();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530400#endif
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600401
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200402 debug("DDR: ");
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600403 return dram_size;
404}
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800405#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600406#endif
407
York Sunc41b7442010-09-28 15:20:33 -0700408#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
409
410/* Board-specific functions defined in each board's ddr.c */
411void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
412 unsigned int ctrl_num);
413void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
414 phys_addr_t *rpn);
415unsigned int
416 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
417
Becky Bruce69694472011-07-18 18:49:15 -0500418void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
419
York Sunc41b7442010-09-28 15:20:33 -0700420static void dump_spd_ddr_reg(void)
421{
422 int i, j, k, m;
423 u8 *p_8;
424 u32 *p_32;
York Suna21803d2013-11-18 10:29:32 -0800425 struct ccsr_ddr __iomem *ddr[CONFIG_NUM_DDR_CONTROLLERS];
York Sunc41b7442010-09-28 15:20:33 -0700426 generic_spd_eeprom_t
427 spd[CONFIG_NUM_DDR_CONTROLLERS][CONFIG_DIMM_SLOTS_PER_CTLR];
428
429 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
430 fsl_ddr_get_spd(spd[i], i);
431
432 puts("SPD data of all dimms (zero vaule is omitted)...\n");
433 puts("Byte (hex) ");
434 k = 1;
435 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
436 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
437 printf("Dimm%d ", k++);
438 }
439 puts("\n");
440 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
441 m = 0;
442 printf("%3d (0x%02x) ", k, k);
443 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
444 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
445 p_8 = (u8 *) &spd[i][j];
446 if (p_8[k]) {
447 printf("0x%02x ", p_8[k]);
448 m++;
449 } else
450 puts(" ");
451 }
452 }
453 if (m)
454 puts("\n");
455 else
456 puts("\r");
457 }
458
459 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
460 switch (i) {
461 case 0:
York Sunf0626592013-09-30 09:22:09 -0700462 ddr[i] = (void *)CONFIG_SYS_FSL_DDR_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700463 break;
York Sunf0626592013-09-30 09:22:09 -0700464#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 1)
York Sunc41b7442010-09-28 15:20:33 -0700465 case 1:
York Sunf0626592013-09-30 09:22:09 -0700466 ddr[i] = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sunc41b7442010-09-28 15:20:33 -0700467 break;
468#endif
York Sunf0626592013-09-30 09:22:09 -0700469#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 2)
York Sune8dc17b2012-08-17 08:22:39 +0000470 case 2:
York Sunf0626592013-09-30 09:22:09 -0700471 ddr[i] = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000472 break;
473#endif
York Sunf0626592013-09-30 09:22:09 -0700474#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 3)
York Sune8dc17b2012-08-17 08:22:39 +0000475 case 3:
York Sunf0626592013-09-30 09:22:09 -0700476 ddr[i] = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
York Sune8dc17b2012-08-17 08:22:39 +0000477 break;
478#endif
York Sunc41b7442010-09-28 15:20:33 -0700479 default:
480 printf("%s unexpected controller number = %u\n",
481 __func__, i);
482 return;
483 }
484 }
485 printf("DDR registers dump for all controllers "
486 "(zero vaule is omitted)...\n");
487 puts("Offset (hex) ");
488 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
489 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
490 puts("\n");
York Suna21803d2013-11-18 10:29:32 -0800491 for (k = 0; k < sizeof(struct ccsr_ddr)/4; k++) {
York Sunc41b7442010-09-28 15:20:33 -0700492 m = 0;
493 printf("%6d (0x%04x)", k * 4, k * 4);
494 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
495 p_32 = (u32 *) ddr[i];
496 if (p_32[k]) {
497 printf(" 0x%08x", p_32[k]);
498 m++;
499 } else
500 puts(" ");
501 }
502 if (m)
503 puts("\n");
504 else
505 puts("\r");
506 }
507 puts("\n");
508}
509
510/* invalid the TLBs for DDR and setup new ones to cover p_addr */
511static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
512{
513 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
514 unsigned long epn;
515 u32 tsize, valid, ptr;
York Sunc41b7442010-09-28 15:20:33 -0700516 int ddr_esel;
517
Becky Bruce69694472011-07-18 18:49:15 -0500518 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunc41b7442010-09-28 15:20:33 -0700519
520 /* Setup new tlb to cover the physical address */
521 setup_ddr_tlbs_phys(p_addr, size>>20);
522
523 ptr = vstart;
524 ddr_esel = find_tlb_idx((void *)ptr, 1);
525 if (ddr_esel != -1) {
526 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
527 } else {
528 printf("TLB error in function %s\n", __func__);
529 return -1;
530 }
531
532 return 0;
533}
534
535/*
536 * slide the testing window up to test another area
537 * for 32_bit system, the maximum testable memory is limited to
538 * CONFIG_MAX_MEM_MAPPED
539 */
540int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
541{
542 phys_addr_t test_cap, p_addr;
543 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
544
545#if !defined(CONFIG_PHYS_64BIT) || \
546 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
547 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
548 test_cap = p_size;
549#else
550 test_cap = gd->ram_size;
551#endif
552 p_addr = (*vstart) + (*size) + (*phys_offset);
553 if (p_addr < test_cap - 1) {
554 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
555 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
556 return -1;
557 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
558 *size = (u32) p_size;
559 printf("Testing 0x%08llx - 0x%08llx\n",
560 (u64)(*vstart) + (*phys_offset),
561 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
562 } else
563 return 1;
564
565 return 0;
566}
567
568/* initialization for testing area */
569int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
570{
571 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
572
573 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
574 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
575 *phys_offset = 0;
576
577#if !defined(CONFIG_PHYS_64BIT) || \
578 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
579 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
580 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
581 puts("Cannot test more than ");
582 print_size(CONFIG_MAX_MEM_MAPPED,
583 " without proper 36BIT support.\n");
584 }
585#endif
586 printf("Testing 0x%08llx - 0x%08llx\n",
587 (u64)(*vstart) + (*phys_offset),
588 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
589
590 return 0;
591}
592
593/* invalid TLBs for DDR and remap as normal after testing */
594int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
595{
596 unsigned long epn;
597 u32 tsize, valid, ptr;
598 phys_addr_t rpn = 0;
599 int ddr_esel;
600
601 /* disable the TLBs for this testing */
602 ptr = *vstart;
603
604 while (ptr < (*vstart) + (*size)) {
605 ddr_esel = find_tlb_idx((void *)ptr, 1);
606 if (ddr_esel != -1) {
607 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
608 disable_tlb(ddr_esel);
609 }
610 ptr += TSIZE_TO_BYTES(tsize);
611 }
612
613 puts("Remap DDR ");
614 setup_ddr_tlbs(gd->ram_size>>20);
615 puts("\n");
616
617 return 0;
618}
619
620void arch_memory_failure_handle(void)
621{
622 dump_spd_ddr_reg();
623}
624#endif