blob: a5048a130647383cb7925f8128cbed2800ed1281 [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];
Kumar Gala9ce3c222010-04-13 11:07:57 -050063#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020064 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kumar Gala9ce3c222010-04-13 11:07:57 -050065#endif /* CONFIG_FSL_CORENET */
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +080066#ifdef CONFIG_DDR_CLK_FREQ
67 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
68 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
69#else
Kumar Gala39aaca12009-03-19 02:46:19 -050070#ifdef CONFIG_FSL_CORENET
71 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
72 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
73#else
Kumar Galaee1e35b2008-05-29 01:21:24 -050074 u32 ddr_ratio = 0;
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +080075#endif /* CONFIG_FSL_CORENET */
Kumar Gala39aaca12009-03-19 02:46:19 -050076#endif /* CONFIG_DDR_CLK_FREQ */
Timur Tabifbb9ecf2011-08-05 16:15:24 -050077 unsigned int i, core, nr_cores = cpu_numcores();
78 u32 mask = cpu_mask();
wdenk42d1f032003-10-15 23:53:47 +000079
wdenk97d80fc2004-06-09 00:34:46 +000080 svr = get_svr();
wdenk97d80fc2004-06-09 00:34:46 +000081 major = SVR_MAJ(svr);
82 minor = SVR_MIN(svr);
83
Poonam Aggrwal0e870982009-07-31 12:08:14 +053084 if (cpu_numcores() > 1) {
Poonam Aggrwal21170c82009-09-03 19:42:40 +053085#ifndef CONFIG_MP
86 puts("Unicore software on multiprocessor system!!\n"
87 "To enable mutlticore build define CONFIG_MP\n");
88#endif
Kim Phillips680c6132010-08-09 18:39:57 -050089 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal0e870982009-07-31 12:08:14 +053090 printf("CPU%d: ", pic->whoami);
91 } else {
92 puts("CPU: ");
93 }
Andy Fleming1ced1212008-02-06 01:19:40 -060094
Poonam Aggrwal0e870982009-07-31 12:08:14 +053095 cpu = gd->cpu;
96
Poonam Aggrwal58442dc2009-09-02 13:35:21 +053097 puts(cpu->name);
98 if (IS_E_PROCESSOR(svr))
99 puts("E");
Andy Fleming1ced1212008-02-06 01:19:40 -0600100
wdenk97d80fc2004-06-09 00:34:46 +0000101 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk42d1f032003-10-15 23:53:47 +0000102
wdenk6c9e7892005-03-15 22:56:53 +0000103 pvr = get_pvr();
104 ver = PVR_VER(pvr);
105 major = PVR_MAJ(pvr);
106 minor = PVR_MIN(pvr);
107
108 printf("Core: ");
Kumar Gala89927382011-07-25 09:28:39 -0500109 switch(ver) {
110 case PVR_VER_E500_V1:
111 case PVR_VER_E500_V2:
112 puts("E500");
113 break;
114 case PVR_VER_E500MC:
115 puts("E500MC");
116 break;
117 case PVR_VER_E5500:
118 puts("E5500");
119 break;
Kumar Gala5b6b85a2012-08-17 08:20:23 +0000120 case PVR_VER_E6500:
121 puts("E6500");
122 break;
Kumar Gala89927382011-07-25 09:28:39 -0500123 default:
Kumar Gala2a3a96c2009-10-21 13:23:54 -0500124 puts("Unknown");
Kumar Gala89927382011-07-25 09:28:39 -0500125 break;
wdenk6c9e7892005-03-15 22:56:53 +0000126 }
Kumar Gala0f060c32008-10-23 01:47:38 -0500127
wdenk6c9e7892005-03-15 22:56:53 +0000128 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
129
wdenk97d80fc2004-06-09 00:34:46 +0000130 get_sys_info(&sysinfo);
131
Kumar Galab29dee32009-02-04 09:35:57 -0600132 puts("Clock Configuration:");
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500133 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1bba30e2009-02-19 00:41:08 +0100134 if (!(i & 3))
135 printf ("\n ");
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500136 printf("CPU%d:%-4s MHz, ", core,
137 strmhz(buf1, sysinfo.freqProcessor[core]));
Kumar Galab29dee32009-02-04 09:35:57 -0600138 }
139 printf("\n CCB:%-4s MHz,\n", strmhz(buf1, sysinfo.freqSystemBus));
Kumar Galaee1e35b2008-05-29 01:21:24 -0500140
Kumar Gala39aaca12009-03-19 02:46:19 -0500141#ifdef CONFIG_FSL_CORENET
142 if (ddr_sync == 1) {
143 printf(" DDR:%-4s MHz (%s MT/s data rate) "
144 "(Synchronous), ",
145 strmhz(buf1, sysinfo.freqDDRBus/2),
146 strmhz(buf2, sysinfo.freqDDRBus));
147 } else {
148 printf(" DDR:%-4s MHz (%s MT/s data rate) "
149 "(Asynchronous), ",
150 strmhz(buf1, sysinfo.freqDDRBus/2),
151 strmhz(buf2, sysinfo.freqDDRBus));
152 }
153#else
Kumar Galad4357932007-12-07 04:59:26 -0600154 switch (ddr_ratio) {
155 case 0x0:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200156 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
157 strmhz(buf1, sysinfo.freqDDRBus/2),
158 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600159 break;
160 case 0x7:
Kumar Gala39aaca12009-03-19 02:46:19 -0500161 printf(" DDR:%-4s MHz (%s MT/s data rate) "
162 "(Synchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200163 strmhz(buf1, sysinfo.freqDDRBus/2),
164 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600165 break;
166 default:
Kumar Gala39aaca12009-03-19 02:46:19 -0500167 printf(" DDR:%-4s MHz (%s MT/s data rate) "
168 "(Asynchronous), ",
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200169 strmhz(buf1, sysinfo.freqDDRBus/2),
170 strmhz(buf2, sysinfo.freqDDRBus));
Kumar Galad4357932007-12-07 04:59:26 -0600171 break;
172 }
Kumar Gala39aaca12009-03-19 02:46:19 -0500173#endif
wdenk97d80fc2004-06-09 00:34:46 +0000174
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530175#if defined(CONFIG_FSL_LBC)
Kumar Gala39aaca12009-03-19 02:46:19 -0500176 if (sysinfo.freqLocalBus > LCRR_CLKDIV) {
Trent Piephoada591d2008-12-03 15:16:37 -0800177 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freqLocalBus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500178 } else {
Trent Piephoada591d2008-12-03 15:16:37 -0800179 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
180 sysinfo.freqLocalBus);
Kumar Gala39aaca12009-03-19 02:46:19 -0500181 }
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530182#endif
wdenk97d80fc2004-06-09 00:34:46 +0000183
Andy Fleming1ced1212008-02-06 01:19:40 -0600184#ifdef CONFIG_CPM2
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200185 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus));
Andy Fleming1ced1212008-02-06 01:19:40 -0600186#endif
wdenk97d80fc2004-06-09 00:34:46 +0000187
Haiying Wangb3d7f202009-05-20 12:30:29 -0400188#ifdef CONFIG_QE
189 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE));
190#endif
191
Kumar Gala39aaca12009-03-19 02:46:19 -0500192#ifdef CONFIG_SYS_DPAA_FMAN
193 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve7eda1f82010-06-17 00:08:29 -0500194 printf(" FMAN%d: %s MHz\n", i + 1,
Kumar Gala39aaca12009-03-19 02:46:19 -0500195 strmhz(buf1, sysinfo.freqFMan[i]));
196 }
197#endif
198
199#ifdef CONFIG_SYS_DPAA_PME
200 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freqPME));
201#endif
202
wdenk6c9e7892005-03-15 22:56:53 +0000203 puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000204
205 return 0;
206}
207
208
209/* ------------------------------------------------------------------------- */
210
Mike Frysinger882b7d72010-10-20 03:41:17 -0400211int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk42d1f032003-10-15 23:53:47 +0000212{
Kumar Galac3483222009-09-08 13:46:46 -0500213/* Everything after the first generation of PQ3 parts has RSTCR */
214#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
215 defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
Sergei Poselenov793670c2008-05-08 14:17:08 +0200216 unsigned long val, msr;
217
wdenk42d1f032003-10-15 23:53:47 +0000218 /*
219 * Initiate hard reset in debug control register DBCR0
Kumar Galac3483222009-09-08 13:46:46 -0500220 * Make sure MSR[DE] = 1. This only resets the core.
wdenk42d1f032003-10-15 23:53:47 +0000221 */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200222 msr = mfmsr ();
223 msr |= MSR_DE;
224 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400225
Sergei Poselenov793670c2008-05-08 14:17:08 +0200226 val = mfspr(DBCR0);
227 val |= 0x70000000;
228 mtspr(DBCR0,val);
Kumar Galac3483222009-09-08 13:46:46 -0500229#else
230 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snyderc18de0d2011-11-21 13:20:32 -0800231
232 /* Attempt board-specific reset */
233 board_reset();
234
235 /* Next try asserting HRESET_REQ */
236 out_be32(&gur->rstcr, 0x2);
Kumar Galac3483222009-09-08 13:46:46 -0500237 udelay(100);
238#endif
Sergei Poselenov793670c2008-05-08 14:17:08 +0200239
wdenk42d1f032003-10-15 23:53:47 +0000240 return 1;
241}
242
243
244/*
245 * Get timebase clock frequency
246 */
Kumar Gala66412c62011-02-18 05:40:54 -0600247#ifndef CONFIG_SYS_FSL_TBCLK_DIV
248#define CONFIG_SYS_FSL_TBCLK_DIV 8
249#endif
wdenk42d1f032003-10-15 23:53:47 +0000250unsigned long get_tbclk (void)
251{
Kumar Gala66412c62011-02-18 05:40:54 -0600252 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
253
254 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk42d1f032003-10-15 23:53:47 +0000255}
256
257
258#if defined(CONFIG_WATCHDOG)
259void
260watchdog_reset(void)
261{
262 int re_enable = disable_interrupts();
263 reset_85xx_watchdog();
264 if (re_enable) enable_interrupts();
265}
266
267void
268reset_85xx_watchdog(void)
269{
270 /*
271 * Clear TSR(WIS) bit by writing 1
272 */
Mark Marshall320d53d2012-09-09 23:06:03 +0000273 mtspr(SPRN_TSR, TSR_WIS);
wdenk42d1f032003-10-15 23:53:47 +0000274}
275#endif /* CONFIG_WATCHDOG */
276
Sergei Poselenov740280e2008-06-06 15:42:40 +0200277/*
Andy Fleming80522dc2008-10-30 16:51:33 -0500278 * Initializes on-chip MMC controllers.
279 * to override, implement board_mmc_init()
280 */
281int cpu_mmc_init(bd_t *bis)
282{
283#ifdef CONFIG_FSL_ESDHC
284 return fsl_esdhc_mmc_init(bis);
285#else
286 return 0;
287#endif
288}
Becky Bruce199e2622010-06-17 11:37:25 -0500289
290/*
291 * Print out the state of various machine registers.
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530292 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
293 * parameters for IFC and TLBs
Becky Bruce199e2622010-06-17 11:37:25 -0500294 */
295void mpc85xx_reginfo(void)
296{
297 print_tlbcam();
298 print_laws();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530299#if defined(CONFIG_FSL_LBC)
Becky Bruce199e2622010-06-17 11:37:25 -0500300 print_lbc_regs();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530301#endif
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530302#ifdef CONFIG_FSL_IFC
303 print_ifc_regs();
304#endif
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530305
Becky Bruce199e2622010-06-17 11:37:25 -0500306}
York Sunebbe11d2010-09-28 15:20:33 -0700307
Becky Bruce38dba0c2010-12-17 17:17:56 -0600308/* Common ddr init for non-corenet fsl 85xx platforms */
309#ifndef CONFIG_FSL_CORENET
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800310#if defined(CONFIG_SYS_RAMBOOT) && !defined(CONFIG_SYS_INIT_L2_ADDR)
311phys_size_t initdram(int board_type)
312{
313#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD)
314 return fsl_ddr_sdram_size();
315#else
316 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
317#endif
318}
319#else /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600320phys_size_t initdram(int board_type)
321{
322 phys_size_t dram_size = 0;
323
Becky Bruce810c4422010-12-17 17:17:58 -0600324#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600325 {
326 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
327 unsigned int x = 10;
328 unsigned int i;
329
330 /*
331 * Work around to stabilize DDR DLL
332 */
333 out_be32(&gur->ddrdllcr, 0x81000000);
334 asm("sync;isync;msync");
335 udelay(200);
336 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
337 setbits_be32(&gur->devdisr, 0x00010000);
338 for (i = 0; i < x; i++)
339 ;
340 clrbits_be32(&gur->devdisr, 0x00010000);
341 x++;
342 }
343 }
344#endif
345
York Sun1b3e3c42011-06-07 09:42:16 +0800346#if defined(CONFIG_SPD_EEPROM) || \
347 defined(CONFIG_DDR_SPD) || \
348 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600349 dram_size = fsl_ddr_sdram();
350#else
351 dram_size = fixed_sdram();
352#endif
353 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
354 dram_size *= 0x100000;
355
356#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
357 /*
358 * Initialize and enable DDR ECC.
359 */
360 ddr_enable_ecc(dram_size);
361#endif
362
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530363#if defined(CONFIG_FSL_LBC)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600364 /* Some boards also have sdram on the lbc */
Becky Bruce70961ba2010-12-17 17:17:57 -0600365 lbc_sdram_init();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530366#endif
Becky Bruce38dba0c2010-12-17 17:17:56 -0600367
Wolfgang Denk21cd5812011-07-25 10:13:53 +0200368 debug("DDR: ");
Becky Bruce38dba0c2010-12-17 17:17:56 -0600369 return dram_size;
370}
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800371#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600372#endif
373
York Sunebbe11d2010-09-28 15:20:33 -0700374#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
375
376/* Board-specific functions defined in each board's ddr.c */
377void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
378 unsigned int ctrl_num);
379void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
380 phys_addr_t *rpn);
381unsigned int
382 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
383
Becky Bruce9cdfe282011-07-18 18:49:15 -0500384void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
385
York Sunebbe11d2010-09-28 15:20:33 -0700386static void dump_spd_ddr_reg(void)
387{
388 int i, j, k, m;
389 u8 *p_8;
390 u32 *p_32;
391 ccsr_ddr_t *ddr[CONFIG_NUM_DDR_CONTROLLERS];
392 generic_spd_eeprom_t
393 spd[CONFIG_NUM_DDR_CONTROLLERS][CONFIG_DIMM_SLOTS_PER_CTLR];
394
395 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
396 fsl_ddr_get_spd(spd[i], i);
397
398 puts("SPD data of all dimms (zero vaule is omitted)...\n");
399 puts("Byte (hex) ");
400 k = 1;
401 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
402 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
403 printf("Dimm%d ", k++);
404 }
405 puts("\n");
406 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
407 m = 0;
408 printf("%3d (0x%02x) ", k, k);
409 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
410 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
411 p_8 = (u8 *) &spd[i][j];
412 if (p_8[k]) {
413 printf("0x%02x ", p_8[k]);
414 m++;
415 } else
416 puts(" ");
417 }
418 }
419 if (m)
420 puts("\n");
421 else
422 puts("\r");
423 }
424
425 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
426 switch (i) {
427 case 0:
428 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR_ADDR;
429 break;
York Suna4c66502012-08-17 08:22:39 +0000430#if defined(CONFIG_SYS_MPC85xx_DDR2_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 1)
York Sunebbe11d2010-09-28 15:20:33 -0700431 case 1:
432 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR2_ADDR;
433 break;
434#endif
York Suna4c66502012-08-17 08:22:39 +0000435#if defined(CONFIG_SYS_MPC85xx_DDR3_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 2)
436 case 2:
437 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR3_ADDR;
438 break;
439#endif
440#if defined(CONFIG_SYS_MPC85xx_DDR4_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 3)
441 case 3:
442 ddr[i] = (void *)CONFIG_SYS_MPC85xx_DDR4_ADDR;
443 break;
444#endif
York Sunebbe11d2010-09-28 15:20:33 -0700445 default:
446 printf("%s unexpected controller number = %u\n",
447 __func__, i);
448 return;
449 }
450 }
451 printf("DDR registers dump for all controllers "
452 "(zero vaule is omitted)...\n");
453 puts("Offset (hex) ");
454 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
455 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
456 puts("\n");
457 for (k = 0; k < sizeof(ccsr_ddr_t)/4; k++) {
458 m = 0;
459 printf("%6d (0x%04x)", k * 4, k * 4);
460 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
461 p_32 = (u32 *) ddr[i];
462 if (p_32[k]) {
463 printf(" 0x%08x", p_32[k]);
464 m++;
465 } else
466 puts(" ");
467 }
468 if (m)
469 puts("\n");
470 else
471 puts("\r");
472 }
473 puts("\n");
474}
475
476/* invalid the TLBs for DDR and setup new ones to cover p_addr */
477static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
478{
479 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
480 unsigned long epn;
481 u32 tsize, valid, ptr;
York Sunebbe11d2010-09-28 15:20:33 -0700482 int ddr_esel;
483
Becky Bruce9cdfe282011-07-18 18:49:15 -0500484 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunebbe11d2010-09-28 15:20:33 -0700485
486 /* Setup new tlb to cover the physical address */
487 setup_ddr_tlbs_phys(p_addr, size>>20);
488
489 ptr = vstart;
490 ddr_esel = find_tlb_idx((void *)ptr, 1);
491 if (ddr_esel != -1) {
492 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
493 } else {
494 printf("TLB error in function %s\n", __func__);
495 return -1;
496 }
497
498 return 0;
499}
500
501/*
502 * slide the testing window up to test another area
503 * for 32_bit system, the maximum testable memory is limited to
504 * CONFIG_MAX_MEM_MAPPED
505 */
506int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
507{
508 phys_addr_t test_cap, p_addr;
509 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
510
511#if !defined(CONFIG_PHYS_64BIT) || \
512 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
513 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
514 test_cap = p_size;
515#else
516 test_cap = gd->ram_size;
517#endif
518 p_addr = (*vstart) + (*size) + (*phys_offset);
519 if (p_addr < test_cap - 1) {
520 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
521 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
522 return -1;
523 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
524 *size = (u32) p_size;
525 printf("Testing 0x%08llx - 0x%08llx\n",
526 (u64)(*vstart) + (*phys_offset),
527 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
528 } else
529 return 1;
530
531 return 0;
532}
533
534/* initialization for testing area */
535int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
536{
537 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
538
539 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
540 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
541 *phys_offset = 0;
542
543#if !defined(CONFIG_PHYS_64BIT) || \
544 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
545 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
546 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
547 puts("Cannot test more than ");
548 print_size(CONFIG_MAX_MEM_MAPPED,
549 " without proper 36BIT support.\n");
550 }
551#endif
552 printf("Testing 0x%08llx - 0x%08llx\n",
553 (u64)(*vstart) + (*phys_offset),
554 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
555
556 return 0;
557}
558
559/* invalid TLBs for DDR and remap as normal after testing */
560int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
561{
562 unsigned long epn;
563 u32 tsize, valid, ptr;
564 phys_addr_t rpn = 0;
565 int ddr_esel;
566
567 /* disable the TLBs for this testing */
568 ptr = *vstart;
569
570 while (ptr < (*vstart) + (*size)) {
571 ddr_esel = find_tlb_idx((void *)ptr, 1);
572 if (ddr_esel != -1) {
573 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
574 disable_tlb(ddr_esel);
575 }
576 ptr += TSIZE_TO_BYTES(tsize);
577 }
578
579 puts("Remap DDR ");
580 setup_ddr_tlbs(gd->ram_size>>20);
581 puts("\n");
582
583 return 0;
584}
585
586void arch_memory_failure_handle(void)
587{
588 dump_spd_ddr_reg();
589}
590#endif