blob: db232e64f841aac58a7a8d6357aaeb695c6a20a5 [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 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
Andy Flemingfecff2b2008-08-31 16:33:26 -050028#include <config.h>
wdenk9c53f402003-10-15 23:53:47 +000029#include <common.h>
30#include <watchdog.h>
31#include <command.h>
Andy Fleming6843a6e2008-10-30 16:51:33 -050032#include <fsl_esdhc.h>
wdenk9c53f402003-10-15 23:53:47 +000033#include <asm/cache.h>
Sergei Poselenovddc1a472008-06-06 15:42:40 +020034#include <asm/io.h>
Becky Bruceee888da2010-06-17 11:37:25 -050035#include <asm/mmu.h>
Dipen Dudhat00c42942011-01-20 16:29:35 +053036#include <asm/fsl_ifc.h>
Becky Bruceee888da2010-06-17 11:37:25 -050037#include <asm/fsl_law.h>
Becky Bruce5e35d8a2010-12-17 17:17:56 -060038#include <asm/fsl_lbc.h>
York Sunc41b7442010-09-28 15:20:33 -070039#include <post.h>
40#include <asm/processor.h>
41#include <asm/fsl_ddr_sdram.h>
wdenk9c53f402003-10-15 23:53:47 +000042
James Yang957b1912008-02-08 16:44:53 -060043DECLARE_GLOBAL_DATA_PTR;
44
Ira W. Snydera85994c2011-11-21 13:20:32 -080045/*
46 * Default board reset function
47 */
48static void
49__board_reset(void)
50{
51 /* Do nothing */
52}
53void board_reset(void) __attribute__((weak, alias("__board_reset")));
54
wdenk9c53f402003-10-15 23:53:47 +000055int checkcpu (void)
56{
wdenka445ddf2004-06-09 00:34:46 +000057 sys_info_t sysinfo;
wdenka445ddf2004-06-09 00:34:46 +000058 uint pvr, svr;
59 uint ver;
60 uint major, minor;
Kumar Gala8ddf00c2008-06-10 16:53:46 -050061 struct cpu_type *cpu;
Wolfgang Denk20591042008-10-19 02:35:49 +020062 char buf1[32], buf2[32];
York Sun3b5179f2012-10-08 07:44:31 +000063#if (defined(CONFIG_DDR_CLK_FREQ) || \
64 defined(CONFIG_FSL_CORENET)) && !defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020065 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala1d39c9a2010-04-13 11:07:57 -050066#endif /* CONFIG_FSL_CORENET */
York Sun3b5179f2012-10-08 07:44:31 +000067
68 /*
69 * Cornet platforms use ddr sync bit in RCW to indicate sync vs async
70 * mode. Previous platform use ddr ratio to do the same. This
71 * information is only for display here.
72 */
Kumar Galadccd9e32009-03-19 02:46:19 -050073#ifdef CONFIG_FSL_CORENET
York Sun383f6f62012-10-08 07:44:16 +000074#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
York Sun3b5179f2012-10-08 07:44:31 +000075 u32 ddr_sync = 0; /* only async mode is supported */
York Sun383f6f62012-10-08 07:44:16 +000076#else
York Sun3b5179f2012-10-08 07:44:31 +000077 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080078 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
York Sun383f6f62012-10-08 07:44:16 +000079#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
York Sun3b5179f2012-10-08 07:44:31 +000080#else /* CONFIG_FSL_CORENET */
81#ifdef CONFIG_DDR_CLK_FREQ
82 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
83 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Gala54b68102008-05-29 01:21:24 -050084#else
85 u32 ddr_ratio = 0;
Kumar Galadccd9e32009-03-19 02:46:19 -050086#endif /* CONFIG_DDR_CLK_FREQ */
York Sun3b5179f2012-10-08 07:44:31 +000087#endif /* CONFIG_FSL_CORENET */
88
Timur Tabi47289422011-08-05 16:15:24 -050089 unsigned int i, core, nr_cores = cpu_numcores();
90 u32 mask = cpu_mask();
wdenk9c53f402003-10-15 23:53:47 +000091
wdenka445ddf2004-06-09 00:34:46 +000092 svr = get_svr();
wdenka445ddf2004-06-09 00:34:46 +000093 major = SVR_MAJ(svr);
94 minor = SVR_MIN(svr);
95
Poonam Aggrwal4baef822009-07-31 12:08:14 +053096 if (cpu_numcores() > 1) {
Poonam Aggrwal36a68432009-09-03 19:42:40 +053097#ifndef CONFIG_MP
98 puts("Unicore software on multiprocessor system!!\n"
99 "To enable mutlticore build define CONFIG_MP\n");
100#endif
Kim Phillips2ecbfeb2010-08-09 18:39:57 -0500101 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530102 printf("CPU%d: ", pic->whoami);
103 } else {
104 puts("CPU: ");
105 }
Andy Flemingf5740972008-02-06 01:19:40 -0600106
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530107 cpu = gd->cpu;
Andy Flemingf5740972008-02-06 01:19:40 -0600108
Poonam Aggrwalda6e1ca2009-09-02 13:35:21 +0530109 puts(cpu->name);
110 if (IS_E_PROCESSOR(svr))
111 puts("E");
Andy Flemingf5740972008-02-06 01:19:40 -0600112
wdenka445ddf2004-06-09 00:34:46 +0000113 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk9c53f402003-10-15 23:53:47 +0000114
wdenk3f3262b2005-03-15 22:56:53 +0000115 pvr = get_pvr();
116 ver = PVR_VER(pvr);
117 major = PVR_MAJ(pvr);
118 minor = PVR_MIN(pvr);
119
120 printf("Core: ");
Kumar Galae222ed32011-07-25 09:28:39 -0500121 switch(ver) {
122 case PVR_VER_E500_V1:
123 case PVR_VER_E500_V2:
124 puts("E500");
125 break;
126 case PVR_VER_E500MC:
127 puts("E500MC");
128 break;
129 case PVR_VER_E5500:
130 puts("E5500");
131 break;
Kumar Galac1abf4a2012-08-17 08:20:23 +0000132 case PVR_VER_E6500:
133 puts("E6500");
134 break;
Kumar Galae222ed32011-07-25 09:28:39 -0500135 default:
Kumar Galabd2985c2009-10-21 13:23:54 -0500136 puts("Unknown");
Kumar Galae222ed32011-07-25 09:28:39 -0500137 break;
wdenk3f3262b2005-03-15 22:56:53 +0000138 }
Kumar Gala9f4a6892008-10-23 01:47:38 -0500139
wdenk3f3262b2005-03-15 22:56:53 +0000140 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
141
York Sun908412d2012-10-08 07:44:10 +0000142 if (nr_cores > CONFIG_MAX_CPUS) {
143 panic("\nUnexpected number of cores: %d, max is %d\n",
144 nr_cores, CONFIG_MAX_CPUS);
145 }
146
wdenka445ddf2004-06-09 00:34:46 +0000147 get_sys_info(&sysinfo);
148
Kumar Galaf92794c2009-02-04 09:35:57 -0600149 puts("Clock Configuration:");
Timur Tabi47289422011-08-05 16:15:24 -0500150 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1f79d142009-02-19 00:41:08 +0100151 if (!(i & 3))
152 printf ("\n ");
Timur Tabi47289422011-08-05 16:15:24 -0500153 printf("CPU%d:%-4s MHz, ", core,
154 strmhz(buf1, sysinfo.freqProcessor[core]));
Kumar Galaf92794c2009-02-04 09:35:57 -0600155 }
156 printf("\n CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
Kumar Gala54b68102008-05-29 01:21:24 -0500157
Kumar Galadccd9e32009-03-19 02:46:19 -0500158#ifdef CONFIG_FSL_CORENET
159 if (ddr_sync == 1) {
160 printf(" DDR:%-4s MHz (%s MT/s data rate) "
161 "(Synchronous), ",
162 strmhz(buf1, sysinfo.freqDDRBus/2),
163 strmhz(buf2, sysinfo.freqDDRBus));
164 } else {
165 printf(" DDR:%-4s MHz (%s MT/s data rate) "
166 "(Asynchronous), ",
167 strmhz(buf1, sysinfo.freqDDRBus/2),
168 strmhz(buf2, sysinfo.freqDDRBus));
169 }
170#else
Kumar Gala07db1702007-12-07 04:59:26 -0600171 switch (ddr_ratio) {
172 case 0x0:
Wolfgang Denk20591042008-10-19 02:35:49 +0200173 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
174 strmhz(buf1, sysinfo.freqDDRBus/2),
175 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Gala07db1702007-12-07 04:59:26 -0600176 break;
177 case 0x7:
Kumar Galadccd9e32009-03-19 02:46:19 -0500178 printf(" DDR:%-4s MHz (%s MT/s data rate) "
179 "(Synchronous), ",
Wolfgang Denk20591042008-10-19 02:35:49 +0200180 strmhz(buf1, sysinfo.freqDDRBus/2),
181 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Gala07db1702007-12-07 04:59:26 -0600182 break;
183 default:
Kumar Galadccd9e32009-03-19 02:46:19 -0500184 printf(" DDR:%-4s MHz (%s MT/s data rate) "
185 "(Asynchronous), ",
Wolfgang Denk20591042008-10-19 02:35:49 +0200186 strmhz(buf1, sysinfo.freqDDRBus/2),
187 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Gala07db1702007-12-07 04:59:26 -0600188 break;
189 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500190#endif
wdenka445ddf2004-06-09 00:34:46 +0000191
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530192#if defined(CONFIG_FSL_LBC)
Kumar Galadccd9e32009-03-19 02:46:19 -0500193 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800194 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500195 } else {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800196 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
197 sysinfo.freqLocalBus);
Kumar Galadccd9e32009-03-19 02:46:19 -0500198 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530199#endif
wdenka445ddf2004-06-09 00:34:46 +0000200
Kumar Gala17ec6fa2012-10-08 07:44:06 +0000201#if defined(CONFIG_FSL_IFC)
202 printf("IFC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
203#endif
204
Andy Flemingf5740972008-02-06 01:19:40 -0600205#ifdef CONFIG_CPM2
Wolfgang Denk20591042008-10-19 02:35:49 +0200206 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
Andy Flemingf5740972008-02-06 01:19:40 -0600207#endif
wdenka445ddf2004-06-09 00:34:46 +0000208
Haiying Wang61414682009-05-20 12:30:29 -0400209#ifdef CONFIG_QE
210 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
211#endif
212
Kumar Galadccd9e32009-03-19 02:46:19 -0500213#ifdef CONFIG_SYS_DPAA_FMAN
214 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve3a9ed2f2010-06-17 00:08:29 -0500215 printf(" FMAN%d: %s MHz\n", i + 1,
Kumar Galadccd9e32009-03-19 02:46:19 -0500216 strmhz(buf1, sysinfo.freqFMan[i]));
217 }
218#endif
219
Haiying Wang09d0aa92012-10-11 07:13:39 +0000220#ifdef CONFIG_SYS_DPAA_QBMAN
221 printf(" QMAN: %s MHz\n", strmhz(buf1, sysinfo.freqQMAN));
222#endif
223
Kumar Galadccd9e32009-03-19 02:46:19 -0500224#ifdef CONFIG_SYS_DPAA_PME
225 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freqPME));
226#endif
227
wdenk3f3262b2005-03-15 22:56:53 +0000228 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000229
230 return 0;
231}
232
233
234/* ------------------------------------------------------------------------- */
235
Mike Frysinger6d1f6982010-10-20 03:41:17 -0400236int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000237{
Kumar Galaaff01532009-09-08 13:46:46 -0500238/* Everything after the first generation of PQ3 parts has RSTCR */
239#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
240 defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
Sergei Poselenov25147422008-05-08 14:17:08 +0200241 unsigned long val, msr;
242
wdenk9c53f402003-10-15 23:53:47 +0000243 /*
244 * Initiate hard reset in debug control register DBCR0
Kumar Galaaff01532009-09-08 13:46:46 -0500245 * Make sure MSR[DE] = 1. This only resets the core.
wdenk9c53f402003-10-15 23:53:47 +0000246 */
Sergei Poselenov25147422008-05-08 14:17:08 +0200247 msr = mfmsr ();
248 msr |= MSR_DE;
249 mtmsr (msr);
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400250
Sergei Poselenov25147422008-05-08 14:17:08 +0200251 val = mfspr(DBCR0);
252 val |= 0x70000000;
253 mtspr(DBCR0,val);
Kumar Galaaff01532009-09-08 13:46:46 -0500254#else
255 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snydera85994c2011-11-21 13:20:32 -0800256
257 /* Attempt board-specific reset */
258 board_reset();
259
260 /* Next try asserting HRESET_REQ */
261 out_be32(&gur->rstcr, 0x2);
Kumar Galaaff01532009-09-08 13:46:46 -0500262 udelay(100);
263#endif
Sergei Poselenov25147422008-05-08 14:17:08 +0200264
wdenk9c53f402003-10-15 23:53:47 +0000265 return 1;
266}
267
268
269/*
270 * Get timebase clock frequency
271 */
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600272#ifndef CONFIG_SYS_FSL_TBCLK_DIV
273#define CONFIG_SYS_FSL_TBCLK_DIV 8
274#endif
wdenk9c53f402003-10-15 23:53:47 +0000275unsigned long get_tbclk (void)
276{
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600277 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
278
279 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk9c53f402003-10-15 23:53:47 +0000280}
281
282
283#if defined(CONFIG_WATCHDOG)
284void
285watchdog_reset(void)
286{
287 int re_enable = disable_interrupts();
288 reset_85xx_watchdog();
289 if (re_enable) enable_interrupts();
290}
291
292void
293reset_85xx_watchdog(void)
294{
295 /*
296 * Clear TSR(WIS) bit by writing 1
297 */
Mark Marshall10b13c92012-09-09 23:06:03 +0000298 mtspr(SPRN_TSR, TSR_WIS);
wdenk9c53f402003-10-15 23:53:47 +0000299}
300#endif /* CONFIG_WATCHDOG */
301
Sergei Poselenovddc1a472008-06-06 15:42:40 +0200302/*
Andy Fleming6843a6e2008-10-30 16:51:33 -0500303 * Initializes on-chip MMC controllers.
304 * to override, implement board_mmc_init()
305 */
306int cpu_mmc_init(bd_t *bis)
307{
308#ifdef CONFIG_FSL_ESDHC
309 return fsl_esdhc_mmc_init(bis);
310#else
311 return 0;
312#endif
313}
Becky Bruceee888da2010-06-17 11:37:25 -0500314
315/*
316 * Print out the state of various machine registers.
Dipen Dudhat00c42942011-01-20 16:29:35 +0530317 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
318 * parameters for IFC and TLBs
Becky Bruceee888da2010-06-17 11:37:25 -0500319 */
320void mpc85xx_reginfo(void)
321{
322 print_tlbcam();
323 print_laws();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530324#if defined(CONFIG_FSL_LBC)
Becky Bruceee888da2010-06-17 11:37:25 -0500325 print_lbc_regs();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530326#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +0530327#ifdef CONFIG_FSL_IFC
328 print_ifc_regs();
329#endif
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530330
Becky Bruceee888da2010-06-17 11:37:25 -0500331}
York Sunc41b7442010-09-28 15:20:33 -0700332
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600333/* Common ddr init for non-corenet fsl 85xx platforms */
334#ifndef CONFIG_FSL_CORENET
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800335#if defined(CONFIG_SYS_RAMBOOT) && !defined(CONFIG_SYS_INIT_L2_ADDR)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600336phys_size_t initdram(int board_type)
337{
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800338#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD)
339 return fsl_ddr_sdram_size();
340#else
341 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
342#endif
343}
344#else /* CONFIG_SYS_RAMBOOT */
345phys_size_t initdram(int board_type)
346{
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600347 phys_size_t dram_size = 0;
348
Becky Bruce4212f232010-12-17 17:17:58 -0600349#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600350 {
351 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
352 unsigned int x = 10;
353 unsigned int i;
354
355 /*
356 * Work around to stabilize DDR DLL
357 */
358 out_be32(&gur->ddrdllcr, 0x81000000);
359 asm("sync;isync;msync");
360 udelay(200);
361 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
362 setbits_be32(&gur->devdisr, 0x00010000);
363 for (i = 0; i < x; i++)
364 ;
365 clrbits_be32(&gur->devdisr, 0x00010000);
366 x++;
367 }
368 }
369#endif
370
York Sune73cc042011-06-07 09:42:16 +0800371#if defined(CONFIG_SPD_EEPROM) || \
372 defined(CONFIG_DDR_SPD) || \
373 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600374 dram_size = fsl_ddr_sdram();
375#else
376 dram_size = fixed_sdram();
377#endif
378 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
379 dram_size *= 0x100000;
380
381#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
382 /*
383 * Initialize and enable DDR ECC.
384 */
385 ddr_enable_ecc(dram_size);
386#endif
387
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530388#if defined(CONFIG_FSL_LBC)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600389 /* Some boards also have sdram on the lbc */
Becky Bruceb88d3d02010-12-17 17:17:57 -0600390 lbc_sdram_init();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530391#endif
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600392
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200393 debug("DDR: ");
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600394 return dram_size;
395}
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800396#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600397#endif
398
York Sunc41b7442010-09-28 15:20:33 -0700399#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
400
401/* Board-specific functions defined in each board's ddr.c */
402void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
403 unsigned int ctrl_num);
404void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
405 phys_addr_t *rpn);
406unsigned int
407 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
408
Becky Bruce69694472011-07-18 18:49:15 -0500409void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
410
York Sunc41b7442010-09-28 15:20:33 -0700411static void dump_spd_ddr_reg(void)
412{
413 int i, j, k, m;
414 u8 *p_8;
415 u32 *p_32;
416 ccsr_ddr_t *ddr[CONFIG_NUM_DDR_CONTROLLERS];
417 generic_spd_eeprom_t
418 spd[CONFIG_NUM_DDR_CONTROLLERS][CONFIG_DIMM_SLOTS_PER_CTLR];
419
420 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
421 fsl_ddr_get_spd(spd[i], i);
422
423 puts("SPD data of all dimms (zero vaule is omitted)...\n");
424 puts("Byte (hex) ");
425 k = 1;
426 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
427 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
428 printf("Dimm%d ", k++);
429 }
430 puts("\n");
431 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
432 m = 0;
433 printf("%3d (0x%02x) ", k, k);
434 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
435 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
436 p_8 = (u8 *) &spd[i][j];
437 if (p_8[k]) {
438 printf("0x%02x ", p_8[k]);
439 m++;
440 } else
441 puts(" ");
442 }
443 }
444 if (m)
445 puts("\n");
446 else
447 puts("\r");
448 }
449
450 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
451 switch (i) {
452 case 0:
453 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR_ADDR;
454 break;
York Sune8dc17b2012-08-17 08:22:39 +0000455#if defined(CONFIG_SYS_MPC85xx_DDR2_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 1)
York Sunc41b7442010-09-28 15:20:33 -0700456 case 1:
457 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR2_ADDR;
458 break;
459#endif
York Sune8dc17b2012-08-17 08:22:39 +0000460#if defined(CONFIG_SYS_MPC85xx_DDR3_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 2)
461 case 2:
462 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR3_ADDR;
463 break;
464#endif
465#if defined(CONFIG_SYS_MPC85xx_DDR4_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 3)
466 case 3:
467 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR4_ADDR;
468 break;
469#endif
York Sunc41b7442010-09-28 15:20:33 -0700470 default:
471 printf("%s unexpected controller number = %u\n",
472 __func__, i);
473 return;
474 }
475 }
476 printf("DDR registers dump for all controllers "
477 "(zero vaule is omitted)...\n");
478 puts("Offset (hex) ");
479 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
480 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
481 puts("\n");
482 for (k = 0; k < sizeof(ccsr_ddr_t)/4; k++) {
483 m = 0;
484 printf("%6d (0x%04x)", k * 4, k * 4);
485 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
486 p_32 = (u32 *) ddr[i];
487 if (p_32[k]) {
488 printf(" 0x%08x", p_32[k]);
489 m++;
490 } else
491 puts(" ");
492 }
493 if (m)
494 puts("\n");
495 else
496 puts("\r");
497 }
498 puts("\n");
499}
500
501/* invalid the TLBs for DDR and setup new ones to cover p_addr */
502static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
503{
504 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
505 unsigned long epn;
506 u32 tsize, valid, ptr;
York Sunc41b7442010-09-28 15:20:33 -0700507 int ddr_esel;
508
Becky Bruce69694472011-07-18 18:49:15 -0500509 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunc41b7442010-09-28 15:20:33 -0700510
511 /* Setup new tlb to cover the physical address */
512 setup_ddr_tlbs_phys(p_addr, size>>20);
513
514 ptr = vstart;
515 ddr_esel = find_tlb_idx((void *)ptr, 1);
516 if (ddr_esel != -1) {
517 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
518 } else {
519 printf("TLB error in function %s\n", __func__);
520 return -1;
521 }
522
523 return 0;
524}
525
526/*
527 * slide the testing window up to test another area
528 * for 32_bit system, the maximum testable memory is limited to
529 * CONFIG_MAX_MEM_MAPPED
530 */
531int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
532{
533 phys_addr_t test_cap, p_addr;
534 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
535
536#if !defined(CONFIG_PHYS_64BIT) || \
537 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
538 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
539 test_cap = p_size;
540#else
541 test_cap = gd->ram_size;
542#endif
543 p_addr = (*vstart) + (*size) + (*phys_offset);
544 if (p_addr < test_cap - 1) {
545 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
546 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
547 return -1;
548 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
549 *size = (u32) p_size;
550 printf("Testing 0x%08llx - 0x%08llx\n",
551 (u64)(*vstart) + (*phys_offset),
552 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
553 } else
554 return 1;
555
556 return 0;
557}
558
559/* initialization for testing area */
560int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
561{
562 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
563
564 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
565 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
566 *phys_offset = 0;
567
568#if !defined(CONFIG_PHYS_64BIT) || \
569 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
570 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
571 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
572 puts("Cannot test more than ");
573 print_size(CONFIG_MAX_MEM_MAPPED,
574 " without proper 36BIT support.\n");
575 }
576#endif
577 printf("Testing 0x%08llx - 0x%08llx\n",
578 (u64)(*vstart) + (*phys_offset),
579 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
580
581 return 0;
582}
583
584/* invalid TLBs for DDR and remap as normal after testing */
585int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
586{
587 unsigned long epn;
588 u32 tsize, valid, ptr;
589 phys_addr_t rpn = 0;
590 int ddr_esel;
591
592 /* disable the TLBs for this testing */
593 ptr = *vstart;
594
595 while (ptr < (*vstart) + (*size)) {
596 ddr_esel = find_tlb_idx((void *)ptr, 1);
597 if (ddr_esel != -1) {
598 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
599 disable_tlb(ddr_esel);
600 }
601 ptr += TSIZE_TO_BYTES(tsize);
602 }
603
604 puts("Remap DDR ");
605 setup_ddr_tlbs(gd->ram_size>>20);
606 puts("\n");
607
608 return 0;
609}
610
611void arch_memory_failure_handle(void)
612{
613 dump_spd_ddr_reg();
614}
615#endif