blob: df2ab6d73cbd73a3872c5263233483f3a277da41 [file] [log] [blame]
wdenk42d1f032003-10-15 23:53:47 +00001/*
Dipen Dudhatbeba93e2011-01-19 12:46:27 +05302 * Copyright 2004,2007-2011 Freescale Semiconductor, Inc.
wdenk42d1f032003-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 Fleming75b9d4a2008-08-31 16:33:26 -050028#include <config.h>
wdenk42d1f032003-10-15 23:53:47 +000029#include <common.h>
30#include <watchdog.h>
31#include <command.h>
Andy Fleming80522dc2008-10-30 16:51:33 -050032#include <fsl_esdhc.h>
wdenk42d1f032003-10-15 23:53:47 +000033#include <asm/cache.h>
Sergei Poselenov740280e2008-06-06 15:42:40 +020034#include <asm/io.h>
Becky Bruce199e2622010-06-17 11:37:25 -050035#include <asm/mmu.h>
Dipen Dudhatd789b5f2011-01-20 16:29:35 +053036#include <asm/fsl_ifc.h>
Becky Bruce199e2622010-06-17 11:37:25 -050037#include <asm/fsl_law.h>
Becky Bruce38dba0c2010-12-17 17:17:56 -060038#include <asm/fsl_lbc.h>
York Sunebbe11d2010-09-28 15:20:33 -070039#include <post.h>
40#include <asm/processor.h>
41#include <asm/fsl_ddr_sdram.h>
wdenk42d1f032003-10-15 23:53:47 +000042
James Yang591933c2008-02-08 16:44:53 -060043DECLARE_GLOBAL_DATA_PTR;
44
Ira W. Snyderc18de0d2011-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
wdenk42d1f032003-10-15 23:53:47 +000055int checkcpu (void)
56{
wdenk97d80fc2004-06-09 00:34:46 +000057 sys_info_t sysinfo;
wdenk97d80fc2004-06-09 00:34:46 +000058 uint pvr, svr;
59 uint ver;
60 uint major, minor;
Kumar Gala4dbdb762008-06-10 16:53:46 -050061 struct cpu_type *cpu;
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020062 char buf1[32], buf2[32];
York Sun98ffa192012-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-VILLARD6d0f6bc2008-10-16 15:01:15 +020065 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala9ce3c222010-04-13 11:07:57 -050066#endif /* CONFIG_FSL_CORENET */
York Sun98ffa192012-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 */
73#ifdef CONFIG_FSL_CORENET
74#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
75 u32 ddr_sync = 0; /* only async mode is supported */
76#else
77 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
78 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
79#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
80#else /* CONFIG_FSL_CORENET */
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +080081#ifdef CONFIG_DDR_CLK_FREQ
82 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
83 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
84#else
Kumar Galaee1e35b2008-05-29 01:21:24 -050085 u32 ddr_ratio = 0;
Kumar Gala39aaca12009-03-19 02:46:19 -050086#endif /* CONFIG_DDR_CLK_FREQ */
York Sun98ffa192012-10-08 07:44:31 +000087#endif /* CONFIG_FSL_CORENET */
88
Timur Tabifbb9ecf2011-08-05 16:15:24 -050089 unsigned int i, core, nr_cores = cpu_numcores();
90 u32 mask = cpu_mask();
wdenk42d1f032003-10-15 23:53:47 +000091
wdenk97d80fc2004-06-09 00:34:46 +000092 svr = get_svr();
wdenk97d80fc2004-06-09 00:34:46 +000093 major = SVR_MAJ(svr);
94 minor = SVR_MIN(svr);
95
Poonam Aggrwal0e870982009-07-31 12:08:14 +053096 if (cpu_numcores() > 1) {
Poonam Aggrwal21170c82009-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 Phillips680c6132010-08-09 18:39:57 -0500101 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530102 printf("CPU%d: ", pic->whoami);
103 } else {
104 puts("CPU: ");
105 }
Andy Fleming1ced1212008-02-06 01:19:40 -0600106
Simon Glass67ac13b2012-12-13 20:48:48 +0000107 cpu = gd->arch.cpu;
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530108
Poonam Aggrwal58442dc2009-09-02 13:35:21 +0530109 puts(cpu->name);
110 if (IS_E_PROCESSOR(svr))
111 puts("E");
Andy Fleming1ced1212008-02-06 01:19:40 -0600112
wdenk97d80fc2004-06-09 00:34:46 +0000113 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk42d1f032003-10-15 23:53:47 +0000114
wdenk6c9e7892005-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 Gala89927382011-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 Gala5b6b85a2012-08-17 08:20:23 +0000132 case PVR_VER_E6500:
133 puts("E6500");
134 break;
Kumar Gala89927382011-07-25 09:28:39 -0500135 default:
Kumar Gala2a3a96c2009-10-21 13:23:54 -0500136 puts("Unknown");
Kumar Gala89927382011-07-25 09:28:39 -0500137 break;
wdenk6c9e7892005-03-15 22:56:53 +0000138 }
Kumar Gala0f060c32008-10-23 01:47:38 -0500139
wdenk6c9e7892005-03-15 22:56:53 +0000140 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
141
York Sun2f1712b2012-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
wdenk97d80fc2004-06-09 00:34:46 +0000147 get_sys_info(&sysinfo);
148
Kumar Galab29dee32009-02-04 09:35:57 -0600149 puts("Clock Configuration:");
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500150 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1bba30e2009-02-19 00:41:08 +0100151 if (!(i & 3))
152 printf ("\n ");
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500153 printf("CPU%d:%-4s MHz, ", core,
154 strmhz(buf1, sysinfo.freqProcessor[core]));
Kumar Galab29dee32009-02-04 09:35:57 -0600155 }
156 printf("\n CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
Kumar Galaee1e35b2008-05-29 01:21:24 -0500157
Kumar Gala39aaca12009-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 Galad4357932007-12-07 04:59:26 -0600171 switch (ddr_ratio) {
172 case 0x0:
Wolfgang Denk08ef89e2008-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 Galad4357932007-12-07 04:59:26 -0600176 break;
177 case 0x7:
Kumar Gala39aaca12009-03-19 02:46:19 -0500178 printf(" DDR:%-4s MHz (%s MT/s data rate) "
179 "(Synchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200180 strmhz(buf1, sysinfo.freqDDRBus/2),
181 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600182 break;
183 default:
Kumar Gala39aaca12009-03-19 02:46:19 -0500184 printf(" DDR:%-4s MHz (%s MT/s data rate) "
185 "(Asynchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200186 strmhz(buf1, sysinfo.freqDDRBus/2),
187 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600188 break;
189 }
Kumar Gala39aaca12009-03-19 02:46:19 -0500190#endif
wdenk97d80fc2004-06-09 00:34:46 +0000191
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530192#if defined(CONFIG_FSL_LBC)
Kumar Gala39aaca12009-03-19 02:46:19 -0500193 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
Trent Piephoada591d2008-12-03 15:16:37 -0800194 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500195 } else {
Trent Piephoada591d2008-12-03 15:16:37 -0800196 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
197 sysinfo.freqLocalBus);
Kumar Gala39aaca12009-03-19 02:46:19 -0500198 }
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530199#endif
wdenk97d80fc2004-06-09 00:34:46 +0000200
Kumar Gala800c73c2012-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 Fleming1ced1212008-02-06 01:19:40 -0600205#ifdef CONFIG_CPM2
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200206 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
Andy Fleming1ced1212008-02-06 01:19:40 -0600207#endif
wdenk97d80fc2004-06-09 00:34:46 +0000208
Haiying Wangb3d7f202009-05-20 12:30:29 -0400209#ifdef CONFIG_QE
210 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
211#endif
212
Kumar Gala39aaca12009-03-19 02:46:19 -0500213#ifdef CONFIG_SYS_DPAA_FMAN
214 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve7eda1f82010-06-17 00:08:29 -0500215 printf(" FMAN%d: %s MHz\n", i + 1,
Kumar Gala39aaca12009-03-19 02:46:19 -0500216 strmhz(buf1, sysinfo.freqFMan[i]));
217 }
218#endif
219
Haiying Wang990e1a82012-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 Gala39aaca12009-03-19 02:46:19 -0500224#ifdef CONFIG_SYS_DPAA_PME
225 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freqPME));
226#endif
227
wdenk6c9e7892005-03-15 22:56:53 +0000228 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000229
230 return 0;
231}
232
233
234/* ------------------------------------------------------------------------- */
235
Mike Frysinger882b7d72010-10-20 03:41:17 -0400236int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk42d1f032003-10-15 23:53:47 +0000237{
Kumar Galac3483222009-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 Poselenov793670c2008-05-08 14:17:08 +0200241 unsigned long val, msr;
242
wdenk42d1f032003-10-15 23:53:47 +0000243 /*
244 * Initiate hard reset in debug control register DBCR0
Kumar Galac3483222009-09-08 13:46:46 -0500245 * Make sure MSR[DE] = 1. This only resets the core.
wdenk42d1f032003-10-15 23:53:47 +0000246 */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200247 msr = mfmsr ();
248 msr |= MSR_DE;
249 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400250
Sergei Poselenov793670c2008-05-08 14:17:08 +0200251 val = mfspr(DBCR0);
252 val |= 0x70000000;
253 mtspr(DBCR0,val);
Kumar Galac3483222009-09-08 13:46:46 -0500254#else
255 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snyderc18de0d2011-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 Galac3483222009-09-08 13:46:46 -0500262 udelay(100);
263#endif
Sergei Poselenov793670c2008-05-08 14:17:08 +0200264
wdenk42d1f032003-10-15 23:53:47 +0000265 return 1;
266}
267
268
269/*
270 * Get timebase clock frequency
271 */
Kumar Gala66412c62011-02-18 05:40:54 -0600272#ifndef CONFIG_SYS_FSL_TBCLK_DIV
273#define CONFIG_SYS_FSL_TBCLK_DIV 8
274#endif
wdenk42d1f032003-10-15 23:53:47 +0000275unsigned long get_tbclk (void)
276{
Kumar Gala66412c62011-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;
wdenk42d1f032003-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 Marshall320d53d2012-09-09 23:06:03 +0000298 mtspr(SPRN_TSR, TSR_WIS);
wdenk42d1f032003-10-15 23:53:47 +0000299}
300#endif /* CONFIG_WATCHDOG */
301
Sergei Poselenov740280e2008-06-06 15:42:40 +0200302/*
Andy Fleming80522dc2008-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 Bruce199e2622010-06-17 11:37:25 -0500314
315/*
316 * Print out the state of various machine registers.
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530317 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
318 * parameters for IFC and TLBs
Becky Bruce199e2622010-06-17 11:37:25 -0500319 */
320void mpc85xx_reginfo(void)
321{
322 print_tlbcam();
323 print_laws();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530324#if defined(CONFIG_FSL_LBC)
Becky Bruce199e2622010-06-17 11:37:25 -0500325 print_lbc_regs();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530326#endif
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530327#ifdef CONFIG_FSL_IFC
328 print_ifc_regs();
329#endif
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530330
Becky Bruce199e2622010-06-17 11:37:25 -0500331}
York Sunebbe11d2010-09-28 15:20:33 -0700332
Becky Bruce38dba0c2010-12-17 17:17:56 -0600333/* Common ddr init for non-corenet fsl 85xx platforms */
334#ifndef CONFIG_FSL_CORENET
Scott Woodc97cd1b2012-09-20 19:02:18 -0500335#if (defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)) && \
336 !defined(CONFIG_SYS_INIT_L2_ADDR)
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800337phys_size_t initdram(int board_type)
338{
339#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD)
340 return fsl_ddr_sdram_size();
341#else
342 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
343#endif
344}
345#else /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600346phys_size_t initdram(int board_type)
347{
348 phys_size_t dram_size = 0;
349
Becky Bruce810c4422010-12-17 17:17:58 -0600350#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600351 {
352 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
353 unsigned int x = 10;
354 unsigned int i;
355
356 /*
357 * Work around to stabilize DDR DLL
358 */
359 out_be32(&gur->ddrdllcr, 0x81000000);
360 asm("sync;isync;msync");
361 udelay(200);
362 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
363 setbits_be32(&gur->devdisr, 0x00010000);
364 for (i = 0; i < x; i++)
365 ;
366 clrbits_be32(&gur->devdisr, 0x00010000);
367 x++;
368 }
369 }
370#endif
371
York Sun1b3e3c42011-06-07 09:42:16 +0800372#if defined(CONFIG_SPD_EEPROM) || \
373 defined(CONFIG_DDR_SPD) || \
374 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600375 dram_size = fsl_ddr_sdram();
376#else
377 dram_size = fixed_sdram();
378#endif
379 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
380 dram_size *= 0x100000;
381
382#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
383 /*
384 * Initialize and enable DDR ECC.
385 */
386 ddr_enable_ecc(dram_size);
387#endif
388
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530389#if defined(CONFIG_FSL_LBC)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600390 /* Some boards also have sdram on the lbc */
Becky Bruce70961ba2010-12-17 17:17:57 -0600391 lbc_sdram_init();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530392#endif
Becky Bruce38dba0c2010-12-17 17:17:56 -0600393
Wolfgang Denk21cd5812011-07-25 10:13:53 +0200394 debug("DDR: ");
Becky Bruce38dba0c2010-12-17 17:17:56 -0600395 return dram_size;
396}
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800397#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600398#endif
399
York Sunebbe11d2010-09-28 15:20:33 -0700400#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
401
402/* Board-specific functions defined in each board's ddr.c */
403void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
404 unsigned int ctrl_num);
405void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
406 phys_addr_t *rpn);
407unsigned int
408 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
409
Becky Bruce9cdfe282011-07-18 18:49:15 -0500410void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
411
York Sunebbe11d2010-09-28 15:20:33 -0700412static void dump_spd_ddr_reg(void)
413{
414 int i, j, k, m;
415 u8 *p_8;
416 u32 *p_32;
417 ccsr_ddr_t *ddr[CONFIG_NUM_DDR_CONTROLLERS];
418 generic_spd_eeprom_t
419 spd[CONFIG_NUM_DDR_CONTROLLERS][CONFIG_DIMM_SLOTS_PER_CTLR];
420
421 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
422 fsl_ddr_get_spd(spd[i], i);
423
424 puts("SPD data of all dimms (zero vaule is omitted)...\n");
425 puts("Byte (hex) ");
426 k = 1;
427 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
428 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
429 printf("Dimm%d ", k++);
430 }
431 puts("\n");
432 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
433 m = 0;
434 printf("%3d (0x%02x) ", k, k);
435 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
436 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
437 p_8 = (u8 *) &spd[i][j];
438 if (p_8[k]) {
439 printf("0x%02x ", p_8[k]);
440 m++;
441 } else
442 puts(" ");
443 }
444 }
445 if (m)
446 puts("\n");
447 else
448 puts("\r");
449 }
450
451 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
452 switch (i) {
453 case 0:
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500454 ddr[i] = (void *)CONFIG_SYS_MPC8xxx_DDR_ADDR;
York Sunebbe11d2010-09-28 15:20:33 -0700455 break;
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500456#if defined(CONFIG_SYS_MPC8xxx_DDR2_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 1)
York Sunebbe11d2010-09-28 15:20:33 -0700457 case 1:
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500458 ddr[i] = (void *)CONFIG_SYS_MPC8xxx_DDR2_ADDR;
York Sunebbe11d2010-09-28 15:20:33 -0700459 break;
460#endif
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500461#if defined(CONFIG_SYS_MPC8xxx_DDR3_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 2)
York Suna4c66502012-08-17 08:22:39 +0000462 case 2:
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500463 ddr[i] = (void *)CONFIG_SYS_MPC8xxx_DDR3_ADDR;
York Suna4c66502012-08-17 08:22:39 +0000464 break;
465#endif
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500466#if defined(CONFIG_SYS_MPC8xxx_DDR4_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 3)
York Suna4c66502012-08-17 08:22:39 +0000467 case 3:
Andy Fleminge76cd5d2012-10-23 19:03:46 -0500468 ddr[i] = (void *)CONFIG_SYS_MPC8xxx_DDR4_ADDR;
York Suna4c66502012-08-17 08:22:39 +0000469 break;
470#endif
York Sunebbe11d2010-09-28 15:20:33 -0700471 default:
472 printf("%s unexpected controller number = %u\n",
473 __func__, i);
474 return;
475 }
476 }
477 printf("DDR registers dump for all controllers "
478 "(zero vaule is omitted)...\n");
479 puts("Offset (hex) ");
480 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
481 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
482 puts("\n");
483 for (k = 0; k < sizeof(ccsr_ddr_t)/4; k++) {
484 m = 0;
485 printf("%6d (0x%04x)", k * 4, k * 4);
486 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
487 p_32 = (u32 *) ddr[i];
488 if (p_32[k]) {
489 printf(" 0x%08x", p_32[k]);
490 m++;
491 } else
492 puts(" ");
493 }
494 if (m)
495 puts("\n");
496 else
497 puts("\r");
498 }
499 puts("\n");
500}
501
502/* invalid the TLBs for DDR and setup new ones to cover p_addr */
503static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
504{
505 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
506 unsigned long epn;
507 u32 tsize, valid, ptr;
York Sunebbe11d2010-09-28 15:20:33 -0700508 int ddr_esel;
509
Becky Bruce9cdfe282011-07-18 18:49:15 -0500510 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunebbe11d2010-09-28 15:20:33 -0700511
512 /* Setup new tlb to cover the physical address */
513 setup_ddr_tlbs_phys(p_addr, size>>20);
514
515 ptr = vstart;
516 ddr_esel = find_tlb_idx((void *)ptr, 1);
517 if (ddr_esel != -1) {
518 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
519 } else {
520 printf("TLB error in function %s\n", __func__);
521 return -1;
522 }
523
524 return 0;
525}
526
527/*
528 * slide the testing window up to test another area
529 * for 32_bit system, the maximum testable memory is limited to
530 * CONFIG_MAX_MEM_MAPPED
531 */
532int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
533{
534 phys_addr_t test_cap, p_addr;
535 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
536
537#if !defined(CONFIG_PHYS_64BIT) || \
538 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
539 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
540 test_cap = p_size;
541#else
542 test_cap = gd->ram_size;
543#endif
544 p_addr = (*vstart) + (*size) + (*phys_offset);
545 if (p_addr < test_cap - 1) {
546 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
547 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
548 return -1;
549 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
550 *size = (u32) p_size;
551 printf("Testing 0x%08llx - 0x%08llx\n",
552 (u64)(*vstart) + (*phys_offset),
553 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
554 } else
555 return 1;
556
557 return 0;
558}
559
560/* initialization for testing area */
561int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
562{
563 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
564
565 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
566 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
567 *phys_offset = 0;
568
569#if !defined(CONFIG_PHYS_64BIT) || \
570 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
571 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
572 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
573 puts("Cannot test more than ");
574 print_size(CONFIG_MAX_MEM_MAPPED,
575 " without proper 36BIT support.\n");
576 }
577#endif
578 printf("Testing 0x%08llx - 0x%08llx\n",
579 (u64)(*vstart) + (*phys_offset),
580 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
581
582 return 0;
583}
584
585/* invalid TLBs for DDR and remap as normal after testing */
586int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
587{
588 unsigned long epn;
589 u32 tsize, valid, ptr;
590 phys_addr_t rpn = 0;
591 int ddr_esel;
592
593 /* disable the TLBs for this testing */
594 ptr = *vstart;
595
596 while (ptr < (*vstart) + (*size)) {
597 ddr_esel = find_tlb_idx((void *)ptr, 1);
598 if (ddr_esel != -1) {
599 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
600 disable_tlb(ddr_esel);
601 }
602 ptr += TSIZE_TO_BYTES(tsize);
603 }
604
605 puts("Remap DDR ");
606 setup_ddr_tlbs(gd->ram_size>>20);
607 puts("\n");
608
609 return 0;
610}
611
612void arch_memory_failure_handle(void)
613{
614 dump_spd_ddr_reg();
615}
616#endif