blob: ef08489aa6892fa6e246fe2954ecd8be060742a2 [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenk42d1f032003-10-15 23:53:47 +000010 */
11
Andy Fleming75b9d4a2008-08-31 16:33:26 -050012#include <config.h>
wdenk42d1f032003-10-15 23:53:47 +000013#include <common.h>
14#include <watchdog.h>
15#include <command.h>
Andy Fleming80522dc2008-10-30 16:51:33 -050016#include <fsl_esdhc.h>
wdenk42d1f032003-10-15 23:53:47 +000017#include <asm/cache.h>
Sergei Poselenov740280e2008-06-06 15:42:40 +020018#include <asm/io.h>
Becky Bruce199e2622010-06-17 11:37:25 -050019#include <asm/mmu.h>
York Sun0b665132013-10-22 12:39:02 -070020#include <fsl_ifc.h>
Becky Bruce199e2622010-06-17 11:37:25 -050021#include <asm/fsl_law.h>
Becky Bruce38dba0c2010-12-17 17:17:56 -060022#include <asm/fsl_lbc.h>
York Sunebbe11d2010-09-28 15:20:33 -070023#include <post.h>
24#include <asm/processor.h>
York Sun5614e712013-09-30 09:22:09 -070025#include <fsl_ddr_sdram.h>
wdenk42d1f032003-10-15 23:53:47 +000026
James Yang591933c2008-02-08 16:44:53 -060027DECLARE_GLOBAL_DATA_PTR;
28
Ira W. Snyderc18de0d2011-11-21 13:20:32 -080029/*
30 * Default board reset function
31 */
32static void
33__board_reset(void)
34{
35 /* Do nothing */
36}
37void board_reset(void) __attribute__((weak, alias("__board_reset")));
38
wdenk42d1f032003-10-15 23:53:47 +000039int checkcpu (void)
40{
wdenk97d80fc2004-06-09 00:34:46 +000041 sys_info_t sysinfo;
wdenk97d80fc2004-06-09 00:34:46 +000042 uint pvr, svr;
43 uint ver;
44 uint major, minor;
Kumar Gala4dbdb762008-06-10 16:53:46 -050045 struct cpu_type *cpu;
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020046 char buf1[32], buf2[32];
York Sunf165bc32013-06-25 11:37:43 -070047#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
48 ccsr_gur_t __iomem *gur =
49 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
50#endif
York Sun98ffa192012-10-08 07:44:31 +000051
52 /*
53 * Cornet platforms use ddr sync bit in RCW to indicate sync vs async
54 * mode. Previous platform use ddr ratio to do the same. This
55 * information is only for display here.
56 */
57#ifdef CONFIG_FSL_CORENET
58#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
59 u32 ddr_sync = 0; /* only async mode is supported */
60#else
61 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
62 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
63#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
64#else /* CONFIG_FSL_CORENET */
Srikanth Srinivasanab48ca12010-02-10 17:32:43 +080065#ifdef CONFIG_DDR_CLK_FREQ
66 u32 ddr_ratio = ((gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO)
67 >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
68#else
Kumar Galaee1e35b2008-05-29 01:21:24 -050069 u32 ddr_ratio = 0;
Kumar Gala39aaca12009-03-19 02:46:19 -050070#endif /* CONFIG_DDR_CLK_FREQ */
York Sun98ffa192012-10-08 07:44:31 +000071#endif /* CONFIG_FSL_CORENET */
72
Timur Tabifbb9ecf2011-08-05 16:15:24 -050073 unsigned int i, core, nr_cores = cpu_numcores();
74 u32 mask = cpu_mask();
wdenk42d1f032003-10-15 23:53:47 +000075
Shaveta Leekhab8bf0ad2015-01-19 12:46:54 +053076#ifdef CONFIG_HETROGENOUS_CLUSTERS
77 unsigned int j, dsp_core, dsp_numcores = cpu_num_dspcores();
78 u32 dsp_mask = cpu_dsp_mask();
79#endif
80
wdenk97d80fc2004-06-09 00:34:46 +000081 svr = get_svr();
wdenk97d80fc2004-06-09 00:34:46 +000082 major = SVR_MAJ(svr);
83 minor = SVR_MIN(svr);
84
Shengzhou Liu5122dfa2014-04-25 16:31:22 +080085#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
86 if (SVR_SOC_VER(svr) == SVR_T4080) {
87 ccsr_rcpm_t *rcpm =
88 (void __iomem *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
89
90 setbits_be32(&gur->devdisr2, FSL_CORENET_DEVDISR2_DTSEC1_6 ||
91 FSL_CORENET_DEVDISR2_DTSEC1_9);
92 setbits_be32(&gur->devdisr3, FSL_CORENET_DEVDISR3_PCIE3);
93 setbits_be32(&gur->devdisr5, FSL_CORENET_DEVDISR5_DDR3);
94
95 /* It needs SW to disable core4~7 as HW design sake on T4080 */
96 for (i = 4; i < 8; i++)
97 cpu_disable(i);
98
99 /* request core4~7 into PH20 state, prior to entering PCL10
100 * state, all cores in cluster should be placed in PH20 state.
101 */
102 setbits_be32(&rcpm->pcph20setr, 0xf0);
103
104 /* put the 2nd cluster into PCL10 state */
105 setbits_be32(&rcpm->clpcl10setr, 1 << 1);
106 }
107#endif
108
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530109 if (cpu_numcores() > 1) {
Poonam Aggrwal21170c82009-09-03 19:42:40 +0530110#ifndef CONFIG_MP
111 puts("Unicore software on multiprocessor system!!\n"
112 "To enable mutlticore build define CONFIG_MP\n");
113#endif
Kim Phillips680c6132010-08-09 18:39:57 -0500114 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530115 printf("CPU%d: ", pic->whoami);
116 } else {
117 puts("CPU: ");
118 }
Andy Fleming1ced1212008-02-06 01:19:40 -0600119
Simon Glass67ac13b2012-12-13 20:48:48 +0000120 cpu = gd->arch.cpu;
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530121
Poonam Aggrwal58442dc2009-09-02 13:35:21 +0530122 puts(cpu->name);
123 if (IS_E_PROCESSOR(svr))
124 puts("E");
Andy Fleming1ced1212008-02-06 01:19:40 -0600125
wdenk97d80fc2004-06-09 00:34:46 +0000126 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk42d1f032003-10-15 23:53:47 +0000127
wdenk6c9e7892005-03-15 22:56:53 +0000128 pvr = get_pvr();
129 ver = PVR_VER(pvr);
130 major = PVR_MAJ(pvr);
131 minor = PVR_MIN(pvr);
132
133 printf("Core: ");
Kumar Gala89927382011-07-25 09:28:39 -0500134 switch(ver) {
135 case PVR_VER_E500_V1:
136 case PVR_VER_E500_V2:
Fabio Estevam6770c5e2013-04-21 13:11:02 -0300137 puts("e500");
Kumar Gala89927382011-07-25 09:28:39 -0500138 break;
139 case PVR_VER_E500MC:
Fabio Estevam6770c5e2013-04-21 13:11:02 -0300140 puts("e500mc");
Kumar Gala89927382011-07-25 09:28:39 -0500141 break;
142 case PVR_VER_E5500:
Fabio Estevam6770c5e2013-04-21 13:11:02 -0300143 puts("e5500");
Kumar Gala89927382011-07-25 09:28:39 -0500144 break;
Kumar Gala5b6b85a2012-08-17 08:20:23 +0000145 case PVR_VER_E6500:
Fabio Estevam6770c5e2013-04-21 13:11:02 -0300146 puts("e6500");
Kumar Gala5b6b85a2012-08-17 08:20:23 +0000147 break;
Kumar Gala89927382011-07-25 09:28:39 -0500148 default:
Kumar Gala2a3a96c2009-10-21 13:23:54 -0500149 puts("Unknown");
Kumar Gala89927382011-07-25 09:28:39 -0500150 break;
wdenk6c9e7892005-03-15 22:56:53 +0000151 }
Kumar Gala0f060c32008-10-23 01:47:38 -0500152
wdenk6c9e7892005-03-15 22:56:53 +0000153 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
154
York Sun2f1712b2012-10-08 07:44:10 +0000155 if (nr_cores > CONFIG_MAX_CPUS) {
156 panic("\nUnexpected number of cores: %d, max is %d\n",
157 nr_cores, CONFIG_MAX_CPUS);
158 }
159
wdenk97d80fc2004-06-09 00:34:46 +0000160 get_sys_info(&sysinfo);
161
vijay rai0c12a152014-04-15 11:34:12 +0530162#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
163 if (sysinfo.diff_sysclk == 1)
164 puts("Single Source Clock Configuration\n");
165#endif
166
Kumar Galab29dee32009-02-04 09:35:57 -0600167 puts("Clock Configuration:");
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500168 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1bba30e2009-02-19 00:41:08 +0100169 if (!(i & 3))
170 printf ("\n ");
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500171 printf("CPU%d:%-4s MHz, ", core,
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530172 strmhz(buf1, sysinfo.freq_processor[core]));
Kumar Galab29dee32009-02-04 09:35:57 -0600173 }
Shaveta Leekhab8bf0ad2015-01-19 12:46:54 +0530174
175#ifdef CONFIG_HETROGENOUS_CLUSTERS
176 for_each_cpu(j, dsp_core, dsp_numcores, dsp_mask) {
177 if (!(j & 3))
178 printf("\n ");
179 printf("DSP CPU%d:%-4s MHz, ", j,
180 strmhz(buf1, sysinfo.freq_processor_dsp[dsp_core]));
181 }
182#endif
183
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530184 printf("\n CCB:%-4s MHz,", strmhz(buf1, sysinfo.freq_systembus));
185 printf("\n");
Kumar Galaee1e35b2008-05-29 01:21:24 -0500186
Kumar Gala39aaca12009-03-19 02:46:19 -0500187#ifdef CONFIG_FSL_CORENET
188 if (ddr_sync == 1) {
189 printf(" DDR:%-4s MHz (%s MT/s data rate) "
190 "(Synchronous), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530191 strmhz(buf1, sysinfo.freq_ddrbus/2),
192 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500193 } else {
194 printf(" DDR:%-4s MHz (%s MT/s data rate) "
195 "(Asynchronous), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530196 strmhz(buf1, sysinfo.freq_ddrbus/2),
197 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500198 }
199#else
Kumar Galad4357932007-12-07 04:59:26 -0600200 switch (ddr_ratio) {
201 case 0x0:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200202 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530203 strmhz(buf1, sysinfo.freq_ddrbus/2),
204 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galad4357932007-12-07 04:59:26 -0600205 break;
206 case 0x7:
Kumar Gala39aaca12009-03-19 02:46:19 -0500207 printf(" DDR:%-4s MHz (%s MT/s data rate) "
208 "(Synchronous), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530209 strmhz(buf1, sysinfo.freq_ddrbus/2),
210 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galad4357932007-12-07 04:59:26 -0600211 break;
212 default:
Kumar Gala39aaca12009-03-19 02:46:19 -0500213 printf(" DDR:%-4s MHz (%s MT/s data rate) "
214 "(Asynchronous), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530215 strmhz(buf1, sysinfo.freq_ddrbus/2),
216 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galad4357932007-12-07 04:59:26 -0600217 break;
218 }
Kumar Gala39aaca12009-03-19 02:46:19 -0500219#endif
wdenk97d80fc2004-06-09 00:34:46 +0000220
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530221#if defined(CONFIG_FSL_LBC)
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530222 if (sysinfo.freq_localbus > LCRR_CLKDIV) {
223 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500224 } else {
Trent Piephoada591d2008-12-03 15:16:37 -0800225 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530226 sysinfo.freq_localbus);
Kumar Gala39aaca12009-03-19 02:46:19 -0500227 }
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530228#endif
wdenk97d80fc2004-06-09 00:34:46 +0000229
Kumar Gala800c73c2012-10-08 07:44:06 +0000230#if defined(CONFIG_FSL_IFC)
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530231 printf("IFC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala800c73c2012-10-08 07:44:06 +0000232#endif
233
Andy Fleming1ced1212008-02-06 01:19:40 -0600234#ifdef CONFIG_CPM2
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530235 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freq_systembus));
Andy Fleming1ced1212008-02-06 01:19:40 -0600236#endif
wdenk97d80fc2004-06-09 00:34:46 +0000237
Haiying Wangb3d7f202009-05-20 12:30:29 -0400238#ifdef CONFIG_QE
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530239 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freq_qe));
Haiying Wangb3d7f202009-05-20 12:30:29 -0400240#endif
241
Shaveta Leekhab8bf0ad2015-01-19 12:46:54 +0530242#if defined(CONFIG_SYS_CPRI)
243 printf(" ");
244 printf("CPRI:%-4s MHz", strmhz(buf1, sysinfo.freq_cpri));
245#endif
246
247#if defined(CONFIG_SYS_MAPLE)
248 printf("\n ");
249 printf("MAPLE:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple));
250 printf("MAPLE-ULB:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple_ulb));
251 printf("MAPLE-eTVPE:%-4s MHz\n",
252 strmhz(buf1, sysinfo.freq_maple_etvpe));
253#endif
254
Kumar Gala39aaca12009-03-19 02:46:19 -0500255#ifdef CONFIG_SYS_DPAA_FMAN
256 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve7eda1f82010-06-17 00:08:29 -0500257 printf(" FMAN%d: %s MHz\n", i + 1,
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530258 strmhz(buf1, sysinfo.freq_fman[i]));
Kumar Gala39aaca12009-03-19 02:46:19 -0500259 }
260#endif
261
Haiying Wang990e1a82012-10-11 07:13:39 +0000262#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530263 printf(" QMAN: %s MHz\n", strmhz(buf1, sysinfo.freq_qman));
Haiying Wang990e1a82012-10-11 07:13:39 +0000264#endif
265
Kumar Gala39aaca12009-03-19 02:46:19 -0500266#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530267 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freq_pme));
Kumar Gala39aaca12009-03-19 02:46:19 -0500268#endif
269
Shruti Kanetkar6b44d9e2013-08-15 11:25:38 -0500270 puts("L1: D-cache 32 KiB enabled\n I-cache 32 KiB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000271
York Sunf165bc32013-06-25 11:37:43 -0700272#ifdef CONFIG_FSL_CORENET
273 /* Display the RCW, so that no one gets confused as to what RCW
274 * we're actually using for this boot.
275 */
276 puts("Reset Configuration Word (RCW):");
277 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
278 u32 rcw = in_be32(&gur->rcwsr[i]);
279
280 if ((i % 4) == 0)
281 printf("\n %08x:", i * 4);
282 printf(" %08x", rcw);
283 }
284 puts("\n");
285#endif
286
wdenk42d1f032003-10-15 23:53:47 +0000287 return 0;
288}
289
290
291/* ------------------------------------------------------------------------- */
292
Mike Frysinger882b7d72010-10-20 03:41:17 -0400293int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk42d1f032003-10-15 23:53:47 +0000294{
Kumar Galac3483222009-09-08 13:46:46 -0500295/* Everything after the first generation of PQ3 parts has RSTCR */
296#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8541) || \
297 defined(CONFIG_MPC8555) || defined(CONFIG_MPC8560)
Sergei Poselenov793670c2008-05-08 14:17:08 +0200298 unsigned long val, msr;
299
wdenk42d1f032003-10-15 23:53:47 +0000300 /*
301 * Initiate hard reset in debug control register DBCR0
Kumar Galac3483222009-09-08 13:46:46 -0500302 * Make sure MSR[DE] = 1. This only resets the core.
wdenk42d1f032003-10-15 23:53:47 +0000303 */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200304 msr = mfmsr ();
305 msr |= MSR_DE;
306 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400307
Sergei Poselenov793670c2008-05-08 14:17:08 +0200308 val = mfspr(DBCR0);
309 val |= 0x70000000;
310 mtspr(DBCR0,val);
Kumar Galac3483222009-09-08 13:46:46 -0500311#else
312 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snyderc18de0d2011-11-21 13:20:32 -0800313
314 /* Attempt board-specific reset */
315 board_reset();
316
317 /* Next try asserting HRESET_REQ */
318 out_be32(&gur->rstcr, 0x2);
Kumar Galac3483222009-09-08 13:46:46 -0500319 udelay(100);
320#endif
Sergei Poselenov793670c2008-05-08 14:17:08 +0200321
wdenk42d1f032003-10-15 23:53:47 +0000322 return 1;
323}
324
325
326/*
327 * Get timebase clock frequency
328 */
Kumar Gala66412c62011-02-18 05:40:54 -0600329#ifndef CONFIG_SYS_FSL_TBCLK_DIV
330#define CONFIG_SYS_FSL_TBCLK_DIV 8
331#endif
Alexander Graffa08d392014-04-11 17:09:45 +0200332__weak unsigned long get_tbclk (void)
wdenk42d1f032003-10-15 23:53:47 +0000333{
Kumar Gala66412c62011-02-18 05:40:54 -0600334 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
335
336 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk42d1f032003-10-15 23:53:47 +0000337}
338
339
340#if defined(CONFIG_WATCHDOG)
Boschung, Rainer0f8062b2014-06-03 09:05:14 +0200341#define WATCHDOG_MASK (TCR_WP(63) | TCR_WRC(3) | TCR_WIE)
342void
343init_85xx_watchdog(void)
344{
345 mtspr(SPRN_TCR, (mfspr(SPRN_TCR) & ~WATCHDOG_MASK) |
346 TCR_WP(CONFIG_WATCHDOG_PRESC) | TCR_WRC(CONFIG_WATCHDOG_RC));
347}
348
wdenk42d1f032003-10-15 23:53:47 +0000349void
wdenk42d1f032003-10-15 23:53:47 +0000350reset_85xx_watchdog(void)
351{
352 /*
353 * Clear TSR(WIS) bit by writing 1
354 */
Mark Marshall320d53d2012-09-09 23:06:03 +0000355 mtspr(SPRN_TSR, TSR_WIS);
wdenk42d1f032003-10-15 23:53:47 +0000356}
Horst Kronstorferdf616ca2013-03-13 10:14:05 +0000357
358void
359watchdog_reset(void)
360{
361 int re_enable = disable_interrupts();
362
363 reset_85xx_watchdog();
364 if (re_enable)
365 enable_interrupts();
366}
wdenk42d1f032003-10-15 23:53:47 +0000367#endif /* CONFIG_WATCHDOG */
368
Sergei Poselenov740280e2008-06-06 15:42:40 +0200369/*
Andy Fleming80522dc2008-10-30 16:51:33 -0500370 * Initializes on-chip MMC controllers.
371 * to override, implement board_mmc_init()
372 */
373int cpu_mmc_init(bd_t *bis)
374{
375#ifdef CONFIG_FSL_ESDHC
376 return fsl_esdhc_mmc_init(bis);
377#else
378 return 0;
379#endif
380}
Becky Bruce199e2622010-06-17 11:37:25 -0500381
382/*
383 * Print out the state of various machine registers.
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530384 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
385 * parameters for IFC and TLBs
Becky Bruce199e2622010-06-17 11:37:25 -0500386 */
387void mpc85xx_reginfo(void)
388{
389 print_tlbcam();
390 print_laws();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530391#if defined(CONFIG_FSL_LBC)
Becky Bruce199e2622010-06-17 11:37:25 -0500392 print_lbc_regs();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530393#endif
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530394#ifdef CONFIG_FSL_IFC
395 print_ifc_regs();
396#endif
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530397
Becky Bruce199e2622010-06-17 11:37:25 -0500398}
York Sunebbe11d2010-09-28 15:20:33 -0700399
Becky Bruce38dba0c2010-12-17 17:17:56 -0600400/* Common ddr init for non-corenet fsl 85xx platforms */
401#ifndef CONFIG_FSL_CORENET
Scott Woodc97cd1b2012-09-20 19:02:18 -0500402#if (defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)) && \
403 !defined(CONFIG_SYS_INIT_L2_ADDR)
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800404phys_size_t initdram(int board_type)
405{
Alexander Graffa08d392014-04-11 17:09:45 +0200406#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD) || \
407 defined(CONFIG_QEMU_E500)
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800408 return fsl_ddr_sdram_size();
409#else
Mingkai Hu76d354f2013-04-12 15:56:28 +0800410 return (phys_size_t)CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800411#endif
412}
413#else /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600414phys_size_t initdram(int board_type)
415{
416 phys_size_t dram_size = 0;
417
Becky Bruce810c4422010-12-17 17:17:58 -0600418#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600419 {
420 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
421 unsigned int x = 10;
422 unsigned int i;
423
424 /*
425 * Work around to stabilize DDR DLL
426 */
427 out_be32(&gur->ddrdllcr, 0x81000000);
428 asm("sync;isync;msync");
429 udelay(200);
430 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
431 setbits_be32(&gur->devdisr, 0x00010000);
432 for (i = 0; i < x; i++)
433 ;
434 clrbits_be32(&gur->devdisr, 0x00010000);
435 x++;
436 }
437 }
438#endif
439
York Sun1b3e3c42011-06-07 09:42:16 +0800440#if defined(CONFIG_SPD_EEPROM) || \
441 defined(CONFIG_DDR_SPD) || \
442 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600443 dram_size = fsl_ddr_sdram();
444#else
445 dram_size = fixed_sdram();
446#endif
447 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
448 dram_size *= 0x100000;
449
450#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
451 /*
452 * Initialize and enable DDR ECC.
453 */
454 ddr_enable_ecc(dram_size);
455#endif
456
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530457#if defined(CONFIG_FSL_LBC)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600458 /* Some boards also have sdram on the lbc */
Becky Bruce70961ba2010-12-17 17:17:57 -0600459 lbc_sdram_init();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530460#endif
Becky Bruce38dba0c2010-12-17 17:17:56 -0600461
Wolfgang Denk21cd5812011-07-25 10:13:53 +0200462 debug("DDR: ");
Becky Bruce38dba0c2010-12-17 17:17:56 -0600463 return dram_size;
464}
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800465#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600466#endif
467
York Sunebbe11d2010-09-28 15:20:33 -0700468#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
469
470/* Board-specific functions defined in each board's ddr.c */
471void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
York Sun1d71efb2014-08-01 15:51:00 -0700472 unsigned int ctrl_num, unsigned int dimm_slots_per_ctrl);
York Sunebbe11d2010-09-28 15:20:33 -0700473void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
474 phys_addr_t *rpn);
475unsigned int
476 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
477
Becky Bruce9cdfe282011-07-18 18:49:15 -0500478void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
479
York Sunebbe11d2010-09-28 15:20:33 -0700480static void dump_spd_ddr_reg(void)
481{
482 int i, j, k, m;
483 u8 *p_8;
484 u32 *p_32;
York Sun9a17eb52013-11-18 10:29:32 -0800485 struct ccsr_ddr __iomem *ddr[CONFIG_NUM_DDR_CONTROLLERS];
York Sunebbe11d2010-09-28 15:20:33 -0700486 generic_spd_eeprom_t
487 spd[CONFIG_NUM_DDR_CONTROLLERS][CONFIG_DIMM_SLOTS_PER_CTLR];
488
489 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
York Sun1d71efb2014-08-01 15:51:00 -0700490 fsl_ddr_get_spd(spd[i], i, CONFIG_DIMM_SLOTS_PER_CTLR);
York Sunebbe11d2010-09-28 15:20:33 -0700491
492 puts("SPD data of all dimms (zero vaule is omitted)...\n");
493 puts("Byte (hex) ");
494 k = 1;
495 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
496 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
497 printf("Dimm%d ", k++);
498 }
499 puts("\n");
500 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
501 m = 0;
502 printf("%3d (0x%02x) ", k, k);
503 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
504 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
505 p_8 = (u8 *) &spd[i][j];
506 if (p_8[k]) {
507 printf("0x%02x ", p_8[k]);
508 m++;
509 } else
510 puts(" ");
511 }
512 }
513 if (m)
514 puts("\n");
515 else
516 puts("\r");
517 }
518
519 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
520 switch (i) {
521 case 0:
York Sun5614e712013-09-30 09:22:09 -0700522 ddr[i] = (void *)CONFIG_SYS_FSL_DDR_ADDR;
York Sunebbe11d2010-09-28 15:20:33 -0700523 break;
York Sun5614e712013-09-30 09:22:09 -0700524#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 1)
York Sunebbe11d2010-09-28 15:20:33 -0700525 case 1:
York Sun5614e712013-09-30 09:22:09 -0700526 ddr[i] = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sunebbe11d2010-09-28 15:20:33 -0700527 break;
528#endif
York Sun5614e712013-09-30 09:22:09 -0700529#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 2)
York Suna4c66502012-08-17 08:22:39 +0000530 case 2:
York Sun5614e712013-09-30 09:22:09 -0700531 ddr[i] = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
York Suna4c66502012-08-17 08:22:39 +0000532 break;
533#endif
York Sun5614e712013-09-30 09:22:09 -0700534#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_NUM_DDR_CONTROLLERS > 3)
York Suna4c66502012-08-17 08:22:39 +0000535 case 3:
York Sun5614e712013-09-30 09:22:09 -0700536 ddr[i] = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
York Suna4c66502012-08-17 08:22:39 +0000537 break;
538#endif
York Sunebbe11d2010-09-28 15:20:33 -0700539 default:
540 printf("%s unexpected controller number = %u\n",
541 __func__, i);
542 return;
543 }
544 }
545 printf("DDR registers dump for all controllers "
546 "(zero vaule is omitted)...\n");
547 puts("Offset (hex) ");
548 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++)
549 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
550 puts("\n");
York Sun9a17eb52013-11-18 10:29:32 -0800551 for (k = 0; k < sizeof(struct ccsr_ddr)/4; k++) {
York Sunebbe11d2010-09-28 15:20:33 -0700552 m = 0;
553 printf("%6d (0x%04x)", k * 4, k * 4);
554 for (i = 0; i < CONFIG_NUM_DDR_CONTROLLERS; i++) {
555 p_32 = (u32 *) ddr[i];
556 if (p_32[k]) {
557 printf(" 0x%08x", p_32[k]);
558 m++;
559 } else
560 puts(" ");
561 }
562 if (m)
563 puts("\n");
564 else
565 puts("\r");
566 }
567 puts("\n");
568}
569
570/* invalid the TLBs for DDR and setup new ones to cover p_addr */
571static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
572{
573 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
574 unsigned long epn;
575 u32 tsize, valid, ptr;
York Sunebbe11d2010-09-28 15:20:33 -0700576 int ddr_esel;
577
Becky Bruce9cdfe282011-07-18 18:49:15 -0500578 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunebbe11d2010-09-28 15:20:33 -0700579
580 /* Setup new tlb to cover the physical address */
581 setup_ddr_tlbs_phys(p_addr, size>>20);
582
583 ptr = vstart;
584 ddr_esel = find_tlb_idx((void *)ptr, 1);
585 if (ddr_esel != -1) {
586 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
587 } else {
588 printf("TLB error in function %s\n", __func__);
589 return -1;
590 }
591
592 return 0;
593}
594
595/*
596 * slide the testing window up to test another area
597 * for 32_bit system, the maximum testable memory is limited to
598 * CONFIG_MAX_MEM_MAPPED
599 */
600int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
601{
602 phys_addr_t test_cap, p_addr;
603 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
604
605#if !defined(CONFIG_PHYS_64BIT) || \
606 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
607 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
608 test_cap = p_size;
609#else
610 test_cap = gd->ram_size;
611#endif
612 p_addr = (*vstart) + (*size) + (*phys_offset);
613 if (p_addr < test_cap - 1) {
614 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
615 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
616 return -1;
617 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
618 *size = (u32) p_size;
619 printf("Testing 0x%08llx - 0x%08llx\n",
620 (u64)(*vstart) + (*phys_offset),
621 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
622 } else
623 return 1;
624
625 return 0;
626}
627
628/* initialization for testing area */
629int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
630{
631 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
632
633 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
634 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
635 *phys_offset = 0;
636
637#if !defined(CONFIG_PHYS_64BIT) || \
638 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
639 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
640 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
641 puts("Cannot test more than ");
642 print_size(CONFIG_MAX_MEM_MAPPED,
643 " without proper 36BIT support.\n");
644 }
645#endif
646 printf("Testing 0x%08llx - 0x%08llx\n",
647 (u64)(*vstart) + (*phys_offset),
648 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
649
650 return 0;
651}
652
653/* invalid TLBs for DDR and remap as normal after testing */
654int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
655{
656 unsigned long epn;
657 u32 tsize, valid, ptr;
658 phys_addr_t rpn = 0;
659 int ddr_esel;
660
661 /* disable the TLBs for this testing */
662 ptr = *vstart;
663
664 while (ptr < (*vstart) + (*size)) {
665 ddr_esel = find_tlb_idx((void *)ptr, 1);
666 if (ddr_esel != -1) {
667 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
668 disable_tlb(ddr_esel);
669 }
670 ptr += TSIZE_TO_BYTES(tsize);
671 }
672
673 puts("Remap DDR ");
674 setup_ddr_tlbs(gd->ram_size>>20);
675 puts("\n");
676
677 return 0;
678}
679
680void arch_memory_failure_handle(void)
681{
682 dump_spd_ddr_reg();
683}
684#endif