blob: 976e86ef414cb6fa600854d4de3c11e824f8a331 [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
wdenk9c53f402003-10-15 23:53:47 +000045int checkcpu (void)
46{
wdenka445ddf2004-06-09 00:34:46 +000047 sys_info_t sysinfo;
wdenka445ddf2004-06-09 00:34:46 +000048 uint pvr, svr;
49 uint ver;
50 uint major, minor;
Kumar Gala8ddf00c2008-06-10 16:53:46 -050051 struct cpu_type *cpu;
Wolfgang Denk20591042008-10-19 02:35:49 +020052 char buf1[32], buf2[32];
Kumar Gala1d39c9a2010-04-13 11:07:57 -050053#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020054 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala1d39c9a2010-04-13 11:07:57 -050055#endif /* CONFIG_FSL_CORENET */
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080056#ifdef CONFIG_DDR_CLK_FREQ
Jason Jinbfcd6c32008-09-27 14:40:57 +080057 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
58 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
Kumar Galadccd9e32009-03-19 02:46:19 -050059#else
60#ifdef CONFIG_FSL_CORENET
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080061 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
62 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
Kumar Gala54b68102008-05-29 01:21:24 -050063#else
64 u32 ddr_ratio = 0;
Srikanth Srinivasanf58c2a42010-02-10 17:32:43 +080065#endif /* CONFIG_FSL_CORENET */
Kumar Galadccd9e32009-03-19 02:46:19 -050066#endif /* CONFIG_DDR_CLK_FREQ */
Haiying Wangbb8aea72009-01-15 11:58:35 -050067 int i;
wdenk9c53f402003-10-15 23:53:47 +000068
wdenka445ddf2004-06-09 00:34:46 +000069 svr = get_svr();
wdenka445ddf2004-06-09 00:34:46 +000070 major = SVR_MAJ(svr);
Kumar Galacd777282008-08-12 11:14:19 -050071#ifdef CONFIG_MPC8536
72 major &= 0x7; /* the msb of this nibble is a mfg code */
73#endif
wdenka445ddf2004-06-09 00:34:46 +000074 minor = SVR_MIN(svr);
75
Poonam Aggrwal4baef822009-07-31 12:08:14 +053076 if (cpu_numcores() > 1) {
Poonam Aggrwal36a68432009-09-03 19:42:40 +053077#ifndef CONFIG_MP
78 puts("Unicore software on multiprocessor system!!\n"
79 "To enable mutlticore build define CONFIG_MP\n");
80#endif
Kim Phillips2ecbfeb2010-08-09 18:39:57 -050081 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal4baef822009-07-31 12:08:14 +053082 printf("CPU%d: ", pic->whoami);
83 } else {
84 puts("CPU: ");
85 }
Andy Flemingf5740972008-02-06 01:19:40 -060086
Poonam Aggrwal4baef822009-07-31 12:08:14 +053087 cpu = gd->cpu;
Andy Flemingf5740972008-02-06 01:19:40 -060088
Poonam Aggrwalda6e1ca2009-09-02 13:35:21 +053089 puts(cpu->name);
90 if (IS_E_PROCESSOR(svr))
91 puts("E");
Andy Flemingf5740972008-02-06 01:19:40 -060092
wdenka445ddf2004-06-09 00:34:46 +000093 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk9c53f402003-10-15 23:53:47 +000094
wdenk3f3262b2005-03-15 22:56:53 +000095 pvr = get_pvr();
96 ver = PVR_VER(pvr);
97 major = PVR_MAJ(pvr);
98 minor = PVR_MIN(pvr);
99
100 printf("Core: ");
Kumar Galae222ed32011-07-25 09:28:39 -0500101 switch(ver) {
102 case PVR_VER_E500_V1:
103 case PVR_VER_E500_V2:
104 puts("E500");
105 break;
106 case PVR_VER_E500MC:
107 puts("E500MC");
108 break;
109 case PVR_VER_E5500:
110 puts("E5500");
111 break;
112 default:
Kumar Galabd2985c2009-10-21 13:23:54 -0500113 puts("Unknown");
Kumar Galae222ed32011-07-25 09:28:39 -0500114 break;
wdenk3f3262b2005-03-15 22:56:53 +0000115 }
Kumar Gala9f4a6892008-10-23 01:47:38 -0500116
wdenk3f3262b2005-03-15 22:56:53 +0000117 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
118
wdenka445ddf2004-06-09 00:34:46 +0000119 get_sys_info(&sysinfo);
120
Kumar Galaf92794c2009-02-04 09:35:57 -0600121 puts("Clock Configuration:");
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530122 for (i = 0; i < cpu_numcores(); i++) {
Wolfgang Denk1f79d142009-02-19 00:41:08 +0100123 if (!(i & 3))
124 printf ("\n ");
Haiying Wangbb8aea72009-01-15 11:58:35 -0500125 printf("CPU%d:%-4s MHz, ",
126 i,strmhz(buf1, sysinfo.freqProcessor[i]));
Kumar Galaf92794c2009-02-04 09:35:57 -0600127 }
128 printf("\n CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
Kumar Gala54b68102008-05-29 01:21:24 -0500129
Kumar Galadccd9e32009-03-19 02:46:19 -0500130#ifdef CONFIG_FSL_CORENET
131 if (ddr_sync == 1) {
132 printf(" DDR:%-4s MHz (%s MT/s data rate) "
133 "(Synchronous), ",
134 strmhz(buf1, sysinfo.freqDDRBus/2),
135 strmhz(buf2, sysinfo.freqDDRBus));
136 } else {
137 printf(" DDR:%-4s MHz (%s MT/s data rate) "
138 "(Asynchronous), ",
139 strmhz(buf1, sysinfo.freqDDRBus/2),
140 strmhz(buf2, sysinfo.freqDDRBus));
141 }
142#else
Kumar Gala07db1702007-12-07 04:59:26 -0600143 switch (ddr_ratio) {
144 case 0x0:
Wolfgang Denk20591042008-10-19 02:35:49 +0200145 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
146 strmhz(buf1, sysinfo.freqDDRBus/2),
147 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Gala07db1702007-12-07 04:59:26 -0600148 break;
149 case 0x7:
Kumar Galadccd9e32009-03-19 02:46:19 -0500150 printf(" DDR:%-4s MHz (%s MT/s data rate) "
151 "(Synchronous), ",
Wolfgang Denk20591042008-10-19 02:35:49 +0200152 strmhz(buf1, sysinfo.freqDDRBus/2),
153 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Gala07db1702007-12-07 04:59:26 -0600154 break;
155 default:
Kumar Galadccd9e32009-03-19 02:46:19 -0500156 printf(" DDR:%-4s MHz (%s MT/s data rate) "
157 "(Asynchronous), ",
Wolfgang Denk20591042008-10-19 02:35:49 +0200158 strmhz(buf1, sysinfo.freqDDRBus/2),
159 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Gala07db1702007-12-07 04:59:26 -0600160 break;
161 }
Kumar Galadccd9e32009-03-19 02:46:19 -0500162#endif
wdenka445ddf2004-06-09 00:34:46 +0000163
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530164#if defined(CONFIG_FSL_LBC)
Kumar Galadccd9e32009-03-19 02:46:19 -0500165 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800166 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
Kumar Galadccd9e32009-03-19 02:46:19 -0500167 } else {
Trent Piepho0b691fc2008-12-03 15:16:37 -0800168 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
169 sysinfo.freqLocalBus);
Kumar Galadccd9e32009-03-19 02:46:19 -0500170 }
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530171#endif
wdenka445ddf2004-06-09 00:34:46 +0000172
Andy Flemingf5740972008-02-06 01:19:40 -0600173#ifdef CONFIG_CPM2
Wolfgang Denk20591042008-10-19 02:35:49 +0200174 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
Andy Flemingf5740972008-02-06 01:19:40 -0600175#endif
wdenka445ddf2004-06-09 00:34:46 +0000176
Haiying Wang61414682009-05-20 12:30:29 -0400177#ifdef CONFIG_QE
178 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
179#endif
180
Kumar Galadccd9e32009-03-19 02:46:19 -0500181#ifdef CONFIG_SYS_DPAA_FMAN
182 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve3a9ed2f2010-06-17 00:08:29 -0500183 printf(" FMAN%d: %s MHz\n", i + 1,
Kumar Galadccd9e32009-03-19 02:46:19 -0500184 strmhz(buf1, sysinfo.freqFMan[i]));
185 }
186#endif
187
188#ifdef CONFIG_SYS_DPAA_PME
189 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freqPME));
190#endif
191
wdenk3f3262b2005-03-15 22:56:53 +0000192 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk9c53f402003-10-15 23:53:47 +0000193
194 return 0;
195}
196
197
198/* ------------------------------------------------------------------------- */
199
Mike Frysinger6d1f6982010-10-20 03:41:17 -0400200int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk9c53f402003-10-15 23:53:47 +0000201{
Kumar Galaaff01532009-09-08 13:46:46 -0500202/* Everything after the first generation of PQ3 parts has RSTCR */
203#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
204 defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
Sergei Poselenov25147422008-05-08 14:17:08 +0200205 unsigned long val, msr;
206
wdenk9c53f402003-10-15 23:53:47 +0000207 /*
208 * Initiate hard reset in debug control register DBCR0
Kumar Galaaff01532009-09-08 13:46:46 -0500209 * Make sure MSR[DE] = 1. This only resets the core.
wdenk9c53f402003-10-15 23:53:47 +0000210 */
Sergei Poselenov25147422008-05-08 14:17:08 +0200211 msr = mfmsr ();
212 msr |= MSR_DE;
213 mtmsr (msr);
urwithsughosh@gmail.com06c2fb92007-09-24 13:32:13 -0400214
Sergei Poselenov25147422008-05-08 14:17:08 +0200215 val = mfspr(DBCR0);
216 val |= 0x70000000;
217 mtspr(DBCR0,val);
Kumar Galaaff01532009-09-08 13:46:46 -0500218#else
219 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
220 out_be32(&gur->rstcr, 0x2); /* HRESET_REQ */
221 udelay(100);
222#endif
Sergei Poselenov25147422008-05-08 14:17:08 +0200223
wdenk9c53f402003-10-15 23:53:47 +0000224 return 1;
225}
226
227
228/*
229 * Get timebase clock frequency
230 */
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600231#ifndef CONFIG_SYS_FSL_TBCLK_DIV
232#define CONFIG_SYS_FSL_TBCLK_DIV 8
233#endif
wdenk9c53f402003-10-15 23:53:47 +0000234unsigned long get_tbclk (void)
235{
Kumar Galaf4fb90f2011-02-18 05:40:54 -0600236 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
237
238 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk9c53f402003-10-15 23:53:47 +0000239}
240
241
242#if defined(CONFIG_WATCHDOG)
243void
244watchdog_reset(void)
245{
246 int re_enable = disable_interrupts();
247 reset_85xx_watchdog();
248 if (re_enable) enable_interrupts();
249}
250
251void
252reset_85xx_watchdog(void)
253{
254 /*
255 * Clear TSR(WIS) bit by writing 1
256 */
257 unsigned long val;
Andy Flemingeac342d2007-04-23 01:44:44 -0500258 val = mfspr(SPRN_TSR);
259 val |= TSR_WIS;
260 mtspr(SPRN_TSR, val);
wdenk9c53f402003-10-15 23:53:47 +0000261}
262#endif /* CONFIG_WATCHDOG */
263
Sergei Poselenovddc1a472008-06-06 15:42:40 +0200264/*
Andy Fleming6843a6e2008-10-30 16:51:33 -0500265 * Initializes on-chip MMC controllers.
266 * to override, implement board_mmc_init()
267 */
268int cpu_mmc_init(bd_t *bis)
269{
270#ifdef CONFIG_FSL_ESDHC
271 return fsl_esdhc_mmc_init(bis);
272#else
273 return 0;
274#endif
275}
Becky Bruceee888da2010-06-17 11:37:25 -0500276
277/*
278 * Print out the state of various machine registers.
Dipen Dudhat00c42942011-01-20 16:29:35 +0530279 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
280 * parameters for IFC and TLBs
Becky Bruceee888da2010-06-17 11:37:25 -0500281 */
282void mpc85xx_reginfo(void)
283{
284 print_tlbcam();
285 print_laws();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530286#if defined(CONFIG_FSL_LBC)
Becky Bruceee888da2010-06-17 11:37:25 -0500287 print_lbc_regs();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530288#endif
Dipen Dudhat00c42942011-01-20 16:29:35 +0530289#ifdef CONFIG_FSL_IFC
290 print_ifc_regs();
291#endif
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530292
Becky Bruceee888da2010-06-17 11:37:25 -0500293}
York Sunc41b7442010-09-28 15:20:33 -0700294
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600295/* Common ddr init for non-corenet fsl 85xx platforms */
296#ifndef CONFIG_FSL_CORENET
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800297#if defined(CONFIG_SYS_RAMBOOT) && !defined(CONFIG_SYS_INIT_L2_ADDR)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600298phys_size_t initdram(int board_type)
299{
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800300#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD)
301 return fsl_ddr_sdram_size();
302#else
303 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
304#endif
305}
306#else /* CONFIG_SYS_RAMBOOT */
307phys_size_t initdram(int board_type)
308{
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600309 phys_size_t dram_size = 0;
310
Becky Bruce4212f232010-12-17 17:17:58 -0600311#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600312 {
313 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
314 unsigned int x = 10;
315 unsigned int i;
316
317 /*
318 * Work around to stabilize DDR DLL
319 */
320 out_be32(&gur->ddrdllcr, 0x81000000);
321 asm("sync;isync;msync");
322 udelay(200);
323 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
324 setbits_be32(&gur->devdisr, 0x00010000);
325 for (i = 0; i < x; i++)
326 ;
327 clrbits_be32(&gur->devdisr, 0x00010000);
328 x++;
329 }
330 }
331#endif
332
York Sune73cc042011-06-07 09:42:16 +0800333#if defined(CONFIG_SPD_EEPROM) || \
334 defined(CONFIG_DDR_SPD) || \
335 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600336 dram_size = fsl_ddr_sdram();
337#else
338 dram_size = fixed_sdram();
339#endif
340 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
341 dram_size *= 0x100000;
342
343#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
344 /*
345 * Initialize and enable DDR ECC.
346 */
347 ddr_enable_ecc(dram_size);
348#endif
349
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530350#if defined(CONFIG_FSL_LBC)
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600351 /* Some boards also have sdram on the lbc */
Becky Bruceb88d3d02010-12-17 17:17:57 -0600352 lbc_sdram_init();
Dipen Dudhat5d51bf92011-01-19 12:46:27 +0530353#endif
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600354
355 puts("DDR: ");
356 return dram_size;
357}
Zhao Chenhui1a35f3d2011-01-28 17:58:37 +0800358#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce5e35d8a2010-12-17 17:17:56 -0600359#endif
360
York Sunc41b7442010-09-28 15:20:33 -0700361#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
362
363/* Board-specific functions defined in each board's ddr.c */
364void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
365 unsigned int ctrl_num);
366void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
367 phys_addr_t *rpn);
368unsigned int
369 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
370
Becky Bruce69694472011-07-18 18:49:15 -0500371void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
372
York Sunc41b7442010-09-28 15:20:33 -0700373static void dump_spd_ddr_reg(void)
374{
375 int i, j, k, m;
376 u8 *p_8;
377 u32 *p_32;
378 ccsr_ddr_t *ddr[CONFIG_NUM_DDR_CONTROLLERS];
379 generic_spd_eeprom_t
380 spd[CONFIG_NUM_DDR_CONTROLLERS][CONFIG_DIMM_SLOTS_PER_CTLR];
381
382 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
383 fsl_ddr_get_spd(spd[i], i);
384
385 puts("SPD data of all dimms (zero vaule is omitted)...\n");
386 puts("Byte (hex) ");
387 k = 1;
388 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
389 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
390 printf("Dimm%d ", k++);
391 }
392 puts("\n");
393 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
394 m = 0;
395 printf("%3d (0x%02x) ", k, k);
396 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
397 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
398 p_8 = (u8 *) &spd[i][j];
399 if (p_8[k]) {
400 printf("0x%02x ", p_8[k]);
401 m++;
402 } else
403 puts(" ");
404 }
405 }
406 if (m)
407 puts("\n");
408 else
409 puts("\r");
410 }
411
412 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
413 switch (i) {
414 case 0:
415 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR_ADDR;
416 break;
417#ifdef CONFIG_SYS_MPC85xx_DDR2_ADDR
418 case 1:
419 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR2_ADDR;
420 break;
421#endif
422 default:
423 printf("%s unexpected controller number = %u\n",
424 __func__, i);
425 return;
426 }
427 }
428 printf("DDR registers dump for all controllers "
429 "(zero vaule is omitted)...\n");
430 puts("Offset (hex) ");
431 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
432 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
433 puts("\n");
434 for (k = 0; k < sizeof(ccsr_ddr_t)/4; k++) {
435 m = 0;
436 printf("%6d (0x%04x)", k * 4, k * 4);
437 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
438 p_32 = (u32 *) ddr[i];
439 if (p_32[k]) {
440 printf(" 0x%08x", p_32[k]);
441 m++;
442 } else
443 puts(" ");
444 }
445 if (m)
446 puts("\n");
447 else
448 puts("\r");
449 }
450 puts("\n");
451}
452
453/* invalid the TLBs for DDR and setup new ones to cover p_addr */
454static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
455{
456 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
457 unsigned long epn;
458 u32 tsize, valid, ptr;
York Sunc41b7442010-09-28 15:20:33 -0700459 int ddr_esel;
460
Becky Bruce69694472011-07-18 18:49:15 -0500461 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunc41b7442010-09-28 15:20:33 -0700462
463 /* Setup new tlb to cover the physical address */
464 setup_ddr_tlbs_phys(p_addr, size>>20);
465
466 ptr = vstart;
467 ddr_esel = find_tlb_idx((void *)ptr, 1);
468 if (ddr_esel != -1) {
469 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
470 } else {
471 printf("TLB error in function %s\n", __func__);
472 return -1;
473 }
474
475 return 0;
476}
477
478/*
479 * slide the testing window up to test another area
480 * for 32_bit system, the maximum testable memory is limited to
481 * CONFIG_MAX_MEM_MAPPED
482 */
483int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
484{
485 phys_addr_t test_cap, p_addr;
486 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
487
488#if !defined(CONFIG_PHYS_64BIT) || \
489 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
490 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
491 test_cap = p_size;
492#else
493 test_cap = gd->ram_size;
494#endif
495 p_addr = (*vstart) + (*size) + (*phys_offset);
496 if (p_addr < test_cap - 1) {
497 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
498 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
499 return -1;
500 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
501 *size = (u32) p_size;
502 printf("Testing 0x%08llx - 0x%08llx\n",
503 (u64)(*vstart) + (*phys_offset),
504 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
505 } else
506 return 1;
507
508 return 0;
509}
510
511/* initialization for testing area */
512int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
513{
514 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
515
516 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
517 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
518 *phys_offset = 0;
519
520#if !defined(CONFIG_PHYS_64BIT) || \
521 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
522 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
523 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
524 puts("Cannot test more than ");
525 print_size(CONFIG_MAX_MEM_MAPPED,
526 " without proper 36BIT support.\n");
527 }
528#endif
529 printf("Testing 0x%08llx - 0x%08llx\n",
530 (u64)(*vstart) + (*phys_offset),
531 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
532
533 return 0;
534}
535
536/* invalid TLBs for DDR and remap as normal after testing */
537int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
538{
539 unsigned long epn;
540 u32 tsize, valid, ptr;
541 phys_addr_t rpn = 0;
542 int ddr_esel;
543
544 /* disable the TLBs for this testing */
545 ptr = *vstart;
546
547 while (ptr < (*vstart) + (*size)) {
548 ddr_esel = find_tlb_idx((void *)ptr, 1);
549 if (ddr_esel != -1) {
550 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
551 disable_tlb(ddr_esel);
552 }
553 ptr += TSIZE_TO_BYTES(tsize);
554 }
555
556 puts("Remap DDR ");
557 setup_ddr_tlbs(gd->ram_size>>20);
558 puts("\n");
559
560 return 0;
561}
562
563void arch_memory_failure_handle(void)
564{
565 dump_spd_ddr_reg();
566}
567#endif