blob: ce59c2580a1ef83cb9b1cc00506ede9ad85e8953 [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
wdenk42d1f032003-10-15 23:53:47 +000045int checkcpu (void)
46{
wdenk97d80fc2004-06-09 00:34:46 +000047 sys_info_t sysinfo;
wdenk97d80fc2004-06-09 00:34:46 +000048 uint pvr, svr;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050049 uint fam;
wdenk97d80fc2004-06-09 00:34:46 +000050 uint ver;
51 uint major, minor;
Kumar Gala4dbdb762008-06-10 16:53:46 -050052 struct cpu_type *cpu;
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020053 char buf1[32], buf2[32];
Kumar Gala9ce3c222010-04-13 11:07:57 -050054#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala9ce3c222010-04-13 11:07:57 -050056#endif /* CONFIG_FSL_CORENET */
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +080057#ifdef CONFIG_DDR_CLK_FREQ
58 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
59 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
60#else
Kumar Gala39aaca12009-03-19 02:46:19 -050061#ifdef CONFIG_FSL_CORENET
62 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
63 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
64#else
Kumar Galaee1e35b2008-05-29 01:21:24 -050065 u32 ddr_ratio = 0;
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +080066#endif /* CONFIG_FSL_CORENET */
Kumar Gala39aaca12009-03-19 02:46:19 -050067#endif /* CONFIG_DDR_CLK_FREQ */
Haiying Wang2fc7eb02009-01-15 11:58:35 -050068 int i;
wdenk42d1f032003-10-15 23:53:47 +000069
wdenk97d80fc2004-06-09 00:34:46 +000070 svr = get_svr();
wdenk97d80fc2004-06-09 00:34:46 +000071 major = SVR_MAJ(svr);
Kumar Galaef50d6c2008-08-12 11:14:19 -050072#ifdef CONFIG_MPC8536
73 major &= 0x7; /* the msb of this nibble is a mfg code */
74#endif
wdenk97d80fc2004-06-09 00:34:46 +000075 minor = SVR_MIN(svr);
76
Poonam Aggrwal0e870982009-07-31 12:08:14 +053077 if (cpu_numcores() > 1) {
Poonam Aggrwal21170c82009-09-03 19:42:40 +053078#ifndef CONFIG_MP
79 puts("Unicore software on multiprocessor system!!\n"
80 "To enable mutlticore build define CONFIG_MP\n");
81#endif
Kim Phillips680c6132010-08-09 18:39:57 -050082 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal0e870982009-07-31 12:08:14 +053083 printf("CPU%d: ", pic->whoami);
84 } else {
85 puts("CPU: ");
86 }
Andy Fleming1ced1212008-02-06 01:19:40 -060087
Poonam Aggrwal0e870982009-07-31 12:08:14 +053088 cpu = gd->cpu;
89
Poonam Aggrwal58442dc2009-09-02 13:35:21 +053090 puts(cpu->name);
91 if (IS_E_PROCESSOR(svr))
92 puts("E");
Andy Fleming1ced1212008-02-06 01:19:40 -060093
wdenk97d80fc2004-06-09 00:34:46 +000094 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk42d1f032003-10-15 23:53:47 +000095
wdenk6c9e7892005-03-15 22:56:53 +000096 pvr = get_pvr();
Jon Loeligerd9b94f22005-07-25 14:05:07 -050097 fam = PVR_FAM(pvr);
wdenk6c9e7892005-03-15 22:56:53 +000098 ver = PVR_VER(pvr);
99 major = PVR_MAJ(pvr);
100 minor = PVR_MIN(pvr);
101
102 printf("Core: ");
Kumar Gala2a3a96c2009-10-21 13:23:54 -0500103 if (PVR_FAM(PVR_85xx)) {
104 switch(PVR_MEM(pvr)) {
105 case 0x1:
106 case 0x2:
107 puts("E500");
108 break;
109 case 0x3:
110 puts("E500MC");
111 break;
112 case 0x4:
113 puts("E5500");
114 break;
115 default:
116 puts("Unknown");
117 break;
118 }
119 } else {
120 puts("Unknown");
wdenk6c9e7892005-03-15 22:56:53 +0000121 }
Kumar Gala0f060c32008-10-23 01:47:38 -0500122
wdenk6c9e7892005-03-15 22:56:53 +0000123 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
124
wdenk97d80fc2004-06-09 00:34:46 +0000125 get_sys_info(&sysinfo);
126
Kumar Galab29dee32009-02-04 09:35:57 -0600127 puts("Clock Configuration:");
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530128 for (i = 0; i < cpu_numcores(); i++) {
Wolfgang Denk1bba30e2009-02-19 00:41:08 +0100129 if (!(i & 3))
130 printf ("\n ");
Haiying Wang2fc7eb02009-01-15 11:58:35 -0500131 printf("CPU%d:%-4s MHz, ",
132 i,strmhz(buf1, sysinfo.freqProcessor[i]));
Kumar Galab29dee32009-02-04 09:35:57 -0600133 }
134 printf("\n CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
Kumar Galaee1e35b2008-05-29 01:21:24 -0500135
Kumar Gala39aaca12009-03-19 02:46:19 -0500136#ifdef CONFIG_FSL_CORENET
137 if (ddr_sync == 1) {
138 printf(" DDR:%-4s MHz (%s MT/s data rate) "
139 "(Synchronous), ",
140 strmhz(buf1, sysinfo.freqDDRBus/2),
141 strmhz(buf2, sysinfo.freqDDRBus));
142 } else {
143 printf(" DDR:%-4s MHz (%s MT/s data rate) "
144 "(Asynchronous), ",
145 strmhz(buf1, sysinfo.freqDDRBus/2),
146 strmhz(buf2, sysinfo.freqDDRBus));
147 }
148#else
Kumar Galad4357932007-12-07 04:59:26 -0600149 switch (ddr_ratio) {
150 case 0x0:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200151 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
152 strmhz(buf1, sysinfo.freqDDRBus/2),
153 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600154 break;
155 case 0x7:
Kumar Gala39aaca12009-03-19 02:46:19 -0500156 printf(" DDR:%-4s MHz (%s MT/s data rate) "
157 "(Synchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200158 strmhz(buf1, sysinfo.freqDDRBus/2),
159 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600160 break;
161 default:
Kumar Gala39aaca12009-03-19 02:46:19 -0500162 printf(" DDR:%-4s MHz (%s MT/s data rate) "
163 "(Asynchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200164 strmhz(buf1, sysinfo.freqDDRBus/2),
165 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600166 break;
167 }
Kumar Gala39aaca12009-03-19 02:46:19 -0500168#endif
wdenk97d80fc2004-06-09 00:34:46 +0000169
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530170#if defined(CONFIG_FSL_LBC)
Kumar Gala39aaca12009-03-19 02:46:19 -0500171 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
Trent Piephoada591d2008-12-03 15:16:37 -0800172 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500173 } else {
Trent Piephoada591d2008-12-03 15:16:37 -0800174 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
175 sysinfo.freqLocalBus);
Kumar Gala39aaca12009-03-19 02:46:19 -0500176 }
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530177#endif
wdenk97d80fc2004-06-09 00:34:46 +0000178
Andy Fleming1ced1212008-02-06 01:19:40 -0600179#ifdef CONFIG_CPM2
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200180 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
Andy Fleming1ced1212008-02-06 01:19:40 -0600181#endif
wdenk97d80fc2004-06-09 00:34:46 +0000182
Haiying Wangb3d7f202009-05-20 12:30:29 -0400183#ifdef CONFIG_QE
184 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
185#endif
186
Kumar Gala39aaca12009-03-19 02:46:19 -0500187#ifdef CONFIG_SYS_DPAA_FMAN
188 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve7eda1f82010-06-17 00:08:29 -0500189 printf(" FMAN%d: %s MHz\n", i + 1,
Kumar Gala39aaca12009-03-19 02:46:19 -0500190 strmhz(buf1, sysinfo.freqFMan[i]));
191 }
192#endif
193
194#ifdef CONFIG_SYS_DPAA_PME
195 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freqPME));
196#endif
197
wdenk6c9e7892005-03-15 22:56:53 +0000198 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000199
200 return 0;
201}
202
203
204/* ------------------------------------------------------------------------- */
205
Mike Frysinger882b7d72010-10-20 03:41:17 -0400206int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk42d1f032003-10-15 23:53:47 +0000207{
Kumar Galac3483222009-09-08 13:46:46 -0500208/* Everything after the first generation of PQ3 parts has RSTCR */
209#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
210 defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
Sergei Poselenov793670c2008-05-08 14:17:08 +0200211 unsigned long val, msr;
212
wdenk42d1f032003-10-15 23:53:47 +0000213 /*
214 * Initiate hard reset in debug control register DBCR0
Kumar Galac3483222009-09-08 13:46:46 -0500215 * Make sure MSR[DE] = 1. This only resets the core.
wdenk42d1f032003-10-15 23:53:47 +0000216 */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200217 msr = mfmsr ();
218 msr |= MSR_DE;
219 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400220
Sergei Poselenov793670c2008-05-08 14:17:08 +0200221 val = mfspr(DBCR0);
222 val |= 0x70000000;
223 mtspr(DBCR0,val);
Kumar Galac3483222009-09-08 13:46:46 -0500224#else
225 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
226 out_be32(&gur->rstcr, 0x2); /* HRESET_REQ */
227 udelay(100);
228#endif
Sergei Poselenov793670c2008-05-08 14:17:08 +0200229
wdenk42d1f032003-10-15 23:53:47 +0000230 return 1;
231}
232
233
234/*
235 * Get timebase clock frequency
236 */
Kumar Gala66412c62011-02-18 05:40:54 -0600237#ifndef CONFIG_SYS_FSL_TBCLK_DIV
238#define CONFIG_SYS_FSL_TBCLK_DIV 8
239#endif
wdenk42d1f032003-10-15 23:53:47 +0000240unsigned long get_tbclk (void)
241{
Kumar Gala66412c62011-02-18 05:40:54 -0600242 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
243
244 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk42d1f032003-10-15 23:53:47 +0000245}
246
247
248#if defined(CONFIG_WATCHDOG)
249void
250watchdog_reset(void)
251{
252 int re_enable = disable_interrupts();
253 reset_85xx_watchdog();
254 if (re_enable) enable_interrupts();
255}
256
257void
258reset_85xx_watchdog(void)
259{
260 /*
261 * Clear TSR(WIS) bit by writing 1
262 */
263 unsigned long val;
Andy Fleming03b81b42007-04-23 01:44:44 -0500264 val = mfspr(SPRN_TSR);
265 val |= TSR_WIS;
266 mtspr(SPRN_TSR, val);
wdenk42d1f032003-10-15 23:53:47 +0000267}
268#endif /* CONFIG_WATCHDOG */
269
Sergei Poselenov740280e2008-06-06 15:42:40 +0200270/*
Andy Fleming80522dc2008-10-30 16:51:33 -0500271 * Initializes on-chip MMC controllers.
272 * to override, implement board_mmc_init()
273 */
274int cpu_mmc_init(bd_t *bis)
275{
276#ifdef CONFIG_FSL_ESDHC
277 return fsl_esdhc_mmc_init(bis);
278#else
279 return 0;
280#endif
281}
Becky Bruce199e2622010-06-17 11:37:25 -0500282
283/*
284 * Print out the state of various machine registers.
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530285 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
286 * parameters for IFC and TLBs
Becky Bruce199e2622010-06-17 11:37:25 -0500287 */
288void mpc85xx_reginfo(void)
289{
290 print_tlbcam();
291 print_laws();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530292#if defined(CONFIG_FSL_LBC)
Becky Bruce199e2622010-06-17 11:37:25 -0500293 print_lbc_regs();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530294#endif
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530295#ifdef CONFIG_FSL_IFC
296 print_ifc_regs();
297#endif
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530298
Becky Bruce199e2622010-06-17 11:37:25 -0500299}
York Sunebbe11d2010-09-28 15:20:33 -0700300
Becky Bruce38dba0c2010-12-17 17:17:56 -0600301/* Common ddr init for non-corenet fsl 85xx platforms */
302#ifndef CONFIG_FSL_CORENET
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800303#if defined(CONFIG_SYS_RAMBOOT) && !defined(CONFIG_SYS_INIT_L2_ADDR)
304phys_size_t initdram(int board_type)
305{
306#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD)
307 return fsl_ddr_sdram_size();
308#else
309 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
310#endif
311}
312#else /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600313phys_size_t initdram(int board_type)
314{
315 phys_size_t dram_size = 0;
316
Becky Bruce810c4422010-12-17 17:17:58 -0600317#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600318 {
319 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
320 unsigned int x = 10;
321 unsigned int i;
322
323 /*
324 * Work around to stabilize DDR DLL
325 */
326 out_be32(&gur->ddrdllcr, 0x81000000);
327 asm("sync;isync;msync");
328 udelay(200);
329 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
330 setbits_be32(&gur->devdisr, 0x00010000);
331 for (i = 0; i < x; i++)
332 ;
333 clrbits_be32(&gur->devdisr, 0x00010000);
334 x++;
335 }
336 }
337#endif
338
York Sun1b3e3c42011-06-07 09:42:16 +0800339#if defined(CONFIG_SPD_EEPROM) || \
340 defined(CONFIG_DDR_SPD) || \
341 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600342 dram_size = fsl_ddr_sdram();
343#else
344 dram_size = fixed_sdram();
345#endif
346 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
347 dram_size *= 0x100000;
348
349#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
350 /*
351 * Initialize and enable DDR ECC.
352 */
353 ddr_enable_ecc(dram_size);
354#endif
355
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530356#if defined(CONFIG_FSL_LBC)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600357 /* Some boards also have sdram on the lbc */
Becky Bruce70961ba2010-12-17 17:17:57 -0600358 lbc_sdram_init();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530359#endif
Becky Bruce38dba0c2010-12-17 17:17:56 -0600360
361 puts("DDR: ");
362 return dram_size;
363}
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800364#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600365#endif
366
York Sunebbe11d2010-09-28 15:20:33 -0700367#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
368
369/* Board-specific functions defined in each board's ddr.c */
370void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
371 unsigned int ctrl_num);
372void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
373 phys_addr_t *rpn);
374unsigned int
375 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
376
Becky Bruce9cdfe282011-07-18 18:49:15 -0500377void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
378
York Sunebbe11d2010-09-28 15:20:33 -0700379static void dump_spd_ddr_reg(void)
380{
381 int i, j, k, m;
382 u8 *p_8;
383 u32 *p_32;
384 ccsr_ddr_t *ddr[CONFIG_NUM_DDR_CONTROLLERS];
385 generic_spd_eeprom_t
386 spd[CONFIG_NUM_DDR_CONTROLLERS][CONFIG_DIMM_SLOTS_PER_CTLR];
387
388 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
389 fsl_ddr_get_spd(spd[i], i);
390
391 puts("SPD data of all dimms (zero vaule is omitted)...\n");
392 puts("Byte (hex) ");
393 k = 1;
394 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
395 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
396 printf("Dimm%d ", k++);
397 }
398 puts("\n");
399 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
400 m = 0;
401 printf("%3d (0x%02x) ", k, k);
402 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
403 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
404 p_8 = (u8 *) &spd[i][j];
405 if (p_8[k]) {
406 printf("0x%02x ", p_8[k]);
407 m++;
408 } else
409 puts(" ");
410 }
411 }
412 if (m)
413 puts("\n");
414 else
415 puts("\r");
416 }
417
418 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
419 switch (i) {
420 case 0:
421 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR_ADDR;
422 break;
423#ifdef CONFIG_SYS_MPC85xx_DDR2_ADDR
424 case 1:
425 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR2_ADDR;
426 break;
427#endif
428 default:
429 printf("%s unexpected controller number = %u\n",
430 __func__, i);
431 return;
432 }
433 }
434 printf("DDR registers dump for all controllers "
435 "(zero vaule is omitted)...\n");
436 puts("Offset (hex) ");
437 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
438 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
439 puts("\n");
440 for (k = 0; k < sizeof(ccsr_ddr_t)/4; k++) {
441 m = 0;
442 printf("%6d (0x%04x)", k * 4, k * 4);
443 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
444 p_32 = (u32 *) ddr[i];
445 if (p_32[k]) {
446 printf(" 0x%08x", p_32[k]);
447 m++;
448 } else
449 puts(" ");
450 }
451 if (m)
452 puts("\n");
453 else
454 puts("\r");
455 }
456 puts("\n");
457}
458
459/* invalid the TLBs for DDR and setup new ones to cover p_addr */
460static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
461{
462 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
463 unsigned long epn;
464 u32 tsize, valid, ptr;
York Sunebbe11d2010-09-28 15:20:33 -0700465 int ddr_esel;
466
Becky Bruce9cdfe282011-07-18 18:49:15 -0500467 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunebbe11d2010-09-28 15:20:33 -0700468
469 /* Setup new tlb to cover the physical address */
470 setup_ddr_tlbs_phys(p_addr, size>>20);
471
472 ptr = vstart;
473 ddr_esel = find_tlb_idx((void *)ptr, 1);
474 if (ddr_esel != -1) {
475 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
476 } else {
477 printf("TLB error in function %s\n", __func__);
478 return -1;
479 }
480
481 return 0;
482}
483
484/*
485 * slide the testing window up to test another area
486 * for 32_bit system, the maximum testable memory is limited to
487 * CONFIG_MAX_MEM_MAPPED
488 */
489int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
490{
491 phys_addr_t test_cap, p_addr;
492 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
493
494#if !defined(CONFIG_PHYS_64BIT) || \
495 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
496 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
497 test_cap = p_size;
498#else
499 test_cap = gd->ram_size;
500#endif
501 p_addr = (*vstart) + (*size) + (*phys_offset);
502 if (p_addr < test_cap - 1) {
503 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
504 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
505 return -1;
506 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
507 *size = (u32) p_size;
508 printf("Testing 0x%08llx - 0x%08llx\n",
509 (u64)(*vstart) + (*phys_offset),
510 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
511 } else
512 return 1;
513
514 return 0;
515}
516
517/* initialization for testing area */
518int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
519{
520 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
521
522 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
523 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
524 *phys_offset = 0;
525
526#if !defined(CONFIG_PHYS_64BIT) || \
527 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
528 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
529 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
530 puts("Cannot test more than ");
531 print_size(CONFIG_MAX_MEM_MAPPED,
532 " without proper 36BIT support.\n");
533 }
534#endif
535 printf("Testing 0x%08llx - 0x%08llx\n",
536 (u64)(*vstart) + (*phys_offset),
537 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
538
539 return 0;
540}
541
542/* invalid TLBs for DDR and remap as normal after testing */
543int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
544{
545 unsigned long epn;
546 u32 tsize, valid, ptr;
547 phys_addr_t rpn = 0;
548 int ddr_esel;
549
550 /* disable the TLBs for this testing */
551 ptr = *vstart;
552
553 while (ptr < (*vstart) + (*size)) {
554 ddr_esel = find_tlb_idx((void *)ptr, 1);
555 if (ddr_esel != -1) {
556 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
557 disable_tlb(ddr_esel);
558 }
559 ptr += TSIZE_TO_BYTES(tsize);
560 }
561
562 puts("Remap DDR ");
563 setup_ddr_tlbs(gd->ram_size>>20);
564 puts("\n");
565
566 return 0;
567}
568
569void arch_memory_failure_handle(void)
570{
571 dump_spd_ddr_reg();
572}
573#endif