blob: b3de164bd8f8c3940913c0029a45542493654eac [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>
Christophe Leroyf3603b42017-07-13 15:09:54 +020026#include <asm/ppc.h>
wdenk42d1f032003-10-15 23:53:47 +000027
James Yang591933c2008-02-08 16:44:53 -060028DECLARE_GLOBAL_DATA_PTR;
29
Ira W. Snyderc18de0d2011-11-21 13:20:32 -080030/*
31 * Default board reset function
32 */
33static void
34__board_reset(void)
35{
36 /* Do nothing */
37}
38void board_reset(void) __attribute__((weak, alias("__board_reset")));
39
wdenk42d1f032003-10-15 23:53:47 +000040int checkcpu (void)
41{
wdenk97d80fc2004-06-09 00:34:46 +000042 sys_info_t sysinfo;
wdenk97d80fc2004-06-09 00:34:46 +000043 uint pvr, svr;
44 uint ver;
45 uint major, minor;
Kumar Gala4dbdb762008-06-10 16:53:46 -050046 struct cpu_type *cpu;
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020047 char buf1[32], buf2[32];
York Sunf165bc32013-06-25 11:37:43 -070048#if defined(CONFIG_DDR_CLK_FREQ) || defined(CONFIG_FSL_CORENET)
49 ccsr_gur_t __iomem *gur =
50 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
51#endif
York Sun98ffa192012-10-08 07:44:31 +000052
53 /*
54 * Cornet platforms use ddr sync bit in RCW to indicate sync vs async
55 * mode. Previous platform use ddr ratio to do the same. This
56 * information is only for display here.
57 */
58#ifdef CONFIG_FSL_CORENET
59#ifdef CONFIG_SYS_FSL_QORIQ_CHASSIS2
60 u32 ddr_sync = 0; /* only async mode is supported */
61#else
62 u32 ddr_sync = ((gur->rcwsr[5]) & FSL_CORENET_RCWSR5_DDR_SYNC)
63 >> FSL_CORENET_RCWSR5_DDR_SYNC_SHIFT;
64#endif /* CONFIG_SYS_FSL_QORIQ_CHASSIS2 */
65#else /* 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 Galaee1e35b2008-05-29 01:21:24 -050070 u32 ddr_ratio = 0;
Kumar Gala39aaca12009-03-19 02:46:19 -050071#endif /* CONFIG_DDR_CLK_FREQ */
York Sun98ffa192012-10-08 07:44:31 +000072#endif /* CONFIG_FSL_CORENET */
73
Timur Tabifbb9ecf2011-08-05 16:15:24 -050074 unsigned int i, core, nr_cores = cpu_numcores();
75 u32 mask = cpu_mask();
wdenk42d1f032003-10-15 23:53:47 +000076
Shaveta Leekhab8bf0ad2015-01-19 12:46:54 +053077#ifdef CONFIG_HETROGENOUS_CLUSTERS
78 unsigned int j, dsp_core, dsp_numcores = cpu_num_dspcores();
79 u32 dsp_mask = cpu_dsp_mask();
80#endif
81
wdenk97d80fc2004-06-09 00:34:46 +000082 svr = get_svr();
wdenk97d80fc2004-06-09 00:34:46 +000083 major = SVR_MAJ(svr);
84 minor = SVR_MIN(svr);
85
Shengzhou Liu5122dfa2014-04-25 16:31:22 +080086#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
87 if (SVR_SOC_VER(svr) == SVR_T4080) {
88 ccsr_rcpm_t *rcpm =
89 (void __iomem *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
90
91 setbits_be32(&gur->devdisr2, FSL_CORENET_DEVDISR2_DTSEC1_6 ||
92 FSL_CORENET_DEVDISR2_DTSEC1_9);
93 setbits_be32(&gur->devdisr3, FSL_CORENET_DEVDISR3_PCIE3);
94 setbits_be32(&gur->devdisr5, FSL_CORENET_DEVDISR5_DDR3);
95
96 /* It needs SW to disable core4~7 as HW design sake on T4080 */
97 for (i = 4; i < 8; i++)
98 cpu_disable(i);
99
100 /* request core4~7 into PH20 state, prior to entering PCL10
101 * state, all cores in cluster should be placed in PH20 state.
102 */
103 setbits_be32(&rcpm->pcph20setr, 0xf0);
104
105 /* put the 2nd cluster into PCL10 state */
106 setbits_be32(&rcpm->clpcl10setr, 1 << 1);
107 }
108#endif
109
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530110 if (cpu_numcores() > 1) {
Poonam Aggrwal21170c82009-09-03 19:42:40 +0530111#ifndef CONFIG_MP
112 puts("Unicore software on multiprocessor system!!\n"
113 "To enable mutlticore build define CONFIG_MP\n");
114#endif
Kim Phillips680c6132010-08-09 18:39:57 -0500115 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530116 printf("CPU%d: ", pic->whoami);
117 } else {
118 puts("CPU: ");
119 }
Andy Fleming1ced1212008-02-06 01:19:40 -0600120
Simon Glass67ac13b2012-12-13 20:48:48 +0000121 cpu = gd->arch.cpu;
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530122
Poonam Aggrwal58442dc2009-09-02 13:35:21 +0530123 puts(cpu->name);
124 if (IS_E_PROCESSOR(svr))
125 puts("E");
Andy Fleming1ced1212008-02-06 01:19:40 -0600126
wdenk97d80fc2004-06-09 00:34:46 +0000127 printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);
wdenk42d1f032003-10-15 23:53:47 +0000128
wdenk6c9e7892005-03-15 22:56:53 +0000129 pvr = get_pvr();
130 ver = PVR_VER(pvr);
131 major = PVR_MAJ(pvr);
132 minor = PVR_MIN(pvr);
133
134 printf("Core: ");
Kumar Gala89927382011-07-25 09:28:39 -0500135 switch(ver) {
136 case PVR_VER_E500_V1:
137 case PVR_VER_E500_V2:
Fabio Estevam6770c5e2013-04-21 13:11:02 -0300138 puts("e500");
Kumar Gala89927382011-07-25 09:28:39 -0500139 break;
140 case PVR_VER_E500MC:
Fabio Estevam6770c5e2013-04-21 13:11:02 -0300141 puts("e500mc");
Kumar Gala89927382011-07-25 09:28:39 -0500142 break;
143 case PVR_VER_E5500:
Fabio Estevam6770c5e2013-04-21 13:11:02 -0300144 puts("e5500");
Kumar Gala89927382011-07-25 09:28:39 -0500145 break;
Kumar Gala5b6b85a2012-08-17 08:20:23 +0000146 case PVR_VER_E6500:
Fabio Estevam6770c5e2013-04-21 13:11:02 -0300147 puts("e6500");
Kumar Gala5b6b85a2012-08-17 08:20:23 +0000148 break;
Kumar Gala89927382011-07-25 09:28:39 -0500149 default:
Kumar Gala2a3a96c2009-10-21 13:23:54 -0500150 puts("Unknown");
Kumar Gala89927382011-07-25 09:28:39 -0500151 break;
wdenk6c9e7892005-03-15 22:56:53 +0000152 }
Kumar Gala0f060c32008-10-23 01:47:38 -0500153
wdenk6c9e7892005-03-15 22:56:53 +0000154 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr);
155
York Sun2f1712b2012-10-08 07:44:10 +0000156 if (nr_cores > CONFIG_MAX_CPUS) {
157 panic("\nUnexpected number of cores: %d, max is %d\n",
158 nr_cores, CONFIG_MAX_CPUS);
159 }
160
wdenk97d80fc2004-06-09 00:34:46 +0000161 get_sys_info(&sysinfo);
162
vijay rai0c12a152014-04-15 11:34:12 +0530163#ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
164 if (sysinfo.diff_sysclk == 1)
165 puts("Single Source Clock Configuration\n");
166#endif
167
Kumar Galab29dee32009-02-04 09:35:57 -0600168 puts("Clock Configuration:");
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500169 for_each_cpu(i, core, nr_cores, mask) {
Wolfgang Denk1bba30e2009-02-19 00:41:08 +0100170 if (!(i & 3))
171 printf ("\n ");
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500172 printf("CPU%d:%-4s MHz, ", core,
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530173 strmhz(buf1, sysinfo.freq_processor[core]));
Kumar Galab29dee32009-02-04 09:35:57 -0600174 }
Shaveta Leekhab8bf0ad2015-01-19 12:46:54 +0530175
176#ifdef CONFIG_HETROGENOUS_CLUSTERS
177 for_each_cpu(j, dsp_core, dsp_numcores, dsp_mask) {
178 if (!(j & 3))
179 printf("\n ");
180 printf("DSP CPU%d:%-4s MHz, ", j,
181 strmhz(buf1, sysinfo.freq_processor_dsp[dsp_core]));
182 }
183#endif
184
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530185 printf("\n CCB:%-4s MHz,", strmhz(buf1, sysinfo.freq_systembus));
186 printf("\n");
Kumar Galaee1e35b2008-05-29 01:21:24 -0500187
Kumar Gala39aaca12009-03-19 02:46:19 -0500188#ifdef CONFIG_FSL_CORENET
189 if (ddr_sync == 1) {
190 printf(" DDR:%-4s MHz (%s MT/s data rate) "
191 "(Synchronous), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530192 strmhz(buf1, sysinfo.freq_ddrbus/2),
193 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500194 } else {
195 printf(" DDR:%-4s MHz (%s MT/s data rate) "
196 "(Asynchronous), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530197 strmhz(buf1, sysinfo.freq_ddrbus/2),
198 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500199 }
200#else
Kumar Galad4357932007-12-07 04:59:26 -0600201 switch (ddr_ratio) {
202 case 0x0:
Wolfgang Denk08ef89e2008-10-19 02:35:49 +0200203 printf(" DDR:%-4s MHz (%s MT/s data rate), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530204 strmhz(buf1, sysinfo.freq_ddrbus/2),
205 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galad4357932007-12-07 04:59:26 -0600206 break;
207 case 0x7:
Kumar Gala39aaca12009-03-19 02:46:19 -0500208 printf(" DDR:%-4s MHz (%s MT/s data rate) "
209 "(Synchronous), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530210 strmhz(buf1, sysinfo.freq_ddrbus/2),
211 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galad4357932007-12-07 04:59:26 -0600212 break;
213 default:
Kumar Gala39aaca12009-03-19 02:46:19 -0500214 printf(" DDR:%-4s MHz (%s MT/s data rate) "
215 "(Asynchronous), ",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530216 strmhz(buf1, sysinfo.freq_ddrbus/2),
217 strmhz(buf2, sysinfo.freq_ddrbus));
Kumar Galad4357932007-12-07 04:59:26 -0600218 break;
219 }
Kumar Gala39aaca12009-03-19 02:46:19 -0500220#endif
wdenk97d80fc2004-06-09 00:34:46 +0000221
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530222#if defined(CONFIG_FSL_LBC)
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530223 if (sysinfo.freq_localbus > LCRR_CLKDIV) {
224 printf("LBC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala39aaca12009-03-19 02:46:19 -0500225 } else {
Trent Piephoada591d2008-12-03 15:16:37 -0800226 printf("LBC: unknown (LCRR[CLKDIV] = 0x%02lx)\n",
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530227 sysinfo.freq_localbus);
Kumar Gala39aaca12009-03-19 02:46:19 -0500228 }
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530229#endif
wdenk97d80fc2004-06-09 00:34:46 +0000230
Kumar Gala800c73c2012-10-08 07:44:06 +0000231#if defined(CONFIG_FSL_IFC)
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530232 printf("IFC:%-4s MHz\n", strmhz(buf1, sysinfo.freq_localbus));
Kumar Gala800c73c2012-10-08 07:44:06 +0000233#endif
234
Andy Fleming1ced1212008-02-06 01:19:40 -0600235#ifdef CONFIG_CPM2
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530236 printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freq_systembus));
Andy Fleming1ced1212008-02-06 01:19:40 -0600237#endif
wdenk97d80fc2004-06-09 00:34:46 +0000238
Haiying Wangb3d7f202009-05-20 12:30:29 -0400239#ifdef CONFIG_QE
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530240 printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freq_qe));
Haiying Wangb3d7f202009-05-20 12:30:29 -0400241#endif
242
Shaveta Leekhab8bf0ad2015-01-19 12:46:54 +0530243#if defined(CONFIG_SYS_CPRI)
244 printf(" ");
245 printf("CPRI:%-4s MHz", strmhz(buf1, sysinfo.freq_cpri));
246#endif
247
248#if defined(CONFIG_SYS_MAPLE)
249 printf("\n ");
250 printf("MAPLE:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple));
251 printf("MAPLE-ULB:%-4s MHz, ", strmhz(buf1, sysinfo.freq_maple_ulb));
252 printf("MAPLE-eTVPE:%-4s MHz\n",
253 strmhz(buf1, sysinfo.freq_maple_etvpe));
254#endif
255
Kumar Gala39aaca12009-03-19 02:46:19 -0500256#ifdef CONFIG_SYS_DPAA_FMAN
257 for (i = 0; i < CONFIG_SYS_NUM_FMAN; i++) {
Emil Medve7eda1f82010-06-17 00:08:29 -0500258 printf(" FMAN%d: %s MHz\n", i + 1,
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530259 strmhz(buf1, sysinfo.freq_fman[i]));
Kumar Gala39aaca12009-03-19 02:46:19 -0500260 }
261#endif
262
Haiying Wang990e1a82012-10-11 07:13:39 +0000263#ifdef CONFIG_SYS_DPAA_QBMAN
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530264 printf(" QMAN: %s MHz\n", strmhz(buf1, sysinfo.freq_qman));
Haiying Wang990e1a82012-10-11 07:13:39 +0000265#endif
266
Kumar Gala39aaca12009-03-19 02:46:19 -0500267#ifdef CONFIG_SYS_DPAA_PME
Prabhakar Kushwaha997399f2013-08-16 14:52:26 +0530268 printf(" PME: %s MHz\n", strmhz(buf1, sysinfo.freq_pme));
Kumar Gala39aaca12009-03-19 02:46:19 -0500269#endif
270
Shruti Kanetkar6b44d9e2013-08-15 11:25:38 -0500271 puts("L1: D-cache 32 KiB enabled\n I-cache 32 KiB enabled\n");
wdenk42d1f032003-10-15 23:53:47 +0000272
York Sunf165bc32013-06-25 11:37:43 -0700273#ifdef CONFIG_FSL_CORENET
274 /* Display the RCW, so that no one gets confused as to what RCW
275 * we're actually using for this boot.
276 */
277 puts("Reset Configuration Word (RCW):");
278 for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) {
279 u32 rcw = in_be32(&gur->rcwsr[i]);
280
281 if ((i % 4) == 0)
282 printf("\n %08x:", i * 4);
283 printf(" %08x", rcw);
284 }
285 puts("\n");
286#endif
287
wdenk42d1f032003-10-15 23:53:47 +0000288 return 0;
289}
290
291
292/* ------------------------------------------------------------------------- */
293
Mike Frysinger882b7d72010-10-20 03:41:17 -0400294int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk42d1f032003-10-15 23:53:47 +0000295{
Kumar Galac3483222009-09-08 13:46:46 -0500296/* Everything after the first generation of PQ3 parts has RSTCR */
York Sun3aff3082016-11-16 11:18:31 -0800297#if defined(CONFIG_ARCH_MPC8540) || defined(CONFIG_ARCH_MPC8541) || \
York Sun99d0a312016-11-16 11:26:45 -0800298 defined(CONFIG_ARCH_MPC8555) || defined(CONFIG_ARCH_MPC8560)
Sergei Poselenov793670c2008-05-08 14:17:08 +0200299 unsigned long val, msr;
300
wdenk42d1f032003-10-15 23:53:47 +0000301 /*
302 * Initiate hard reset in debug control register DBCR0
Kumar Galac3483222009-09-08 13:46:46 -0500303 * Make sure MSR[DE] = 1. This only resets the core.
wdenk42d1f032003-10-15 23:53:47 +0000304 */
Sergei Poselenov793670c2008-05-08 14:17:08 +0200305 msr = mfmsr ();
306 msr |= MSR_DE;
307 mtmsr (msr);
urwithsughosh@gmail.comdf909682007-09-24 13:32:13 -0400308
Sergei Poselenov793670c2008-05-08 14:17:08 +0200309 val = mfspr(DBCR0);
310 val |= 0x70000000;
311 mtspr(DBCR0,val);
Kumar Galac3483222009-09-08 13:46:46 -0500312#else
313 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Ira W. Snyderc18de0d2011-11-21 13:20:32 -0800314
315 /* Attempt board-specific reset */
316 board_reset();
317
318 /* Next try asserting HRESET_REQ */
319 out_be32(&gur->rstcr, 0x2);
Kumar Galac3483222009-09-08 13:46:46 -0500320 udelay(100);
321#endif
Sergei Poselenov793670c2008-05-08 14:17:08 +0200322
wdenk42d1f032003-10-15 23:53:47 +0000323 return 1;
324}
325
326
327/*
328 * Get timebase clock frequency
329 */
Kumar Gala66412c62011-02-18 05:40:54 -0600330#ifndef CONFIG_SYS_FSL_TBCLK_DIV
331#define CONFIG_SYS_FSL_TBCLK_DIV 8
332#endif
Alexander Graffa08d392014-04-11 17:09:45 +0200333__weak unsigned long get_tbclk (void)
wdenk42d1f032003-10-15 23:53:47 +0000334{
Kumar Gala66412c62011-02-18 05:40:54 -0600335 unsigned long tbclk_div = CONFIG_SYS_FSL_TBCLK_DIV;
336
337 return (gd->bus_clk + (tbclk_div >> 1)) / tbclk_div;
wdenk42d1f032003-10-15 23:53:47 +0000338}
339
340
341#if defined(CONFIG_WATCHDOG)
Boschung, Rainer0f8062b2014-06-03 09:05:14 +0200342#define WATCHDOG_MASK (TCR_WP(63) | TCR_WRC(3) | TCR_WIE)
343void
344init_85xx_watchdog(void)
345{
346 mtspr(SPRN_TCR, (mfspr(SPRN_TCR) & ~WATCHDOG_MASK) |
347 TCR_WP(CONFIG_WATCHDOG_PRESC) | TCR_WRC(CONFIG_WATCHDOG_RC));
348}
349
wdenk42d1f032003-10-15 23:53:47 +0000350void
wdenk42d1f032003-10-15 23:53:47 +0000351reset_85xx_watchdog(void)
352{
353 /*
354 * Clear TSR(WIS) bit by writing 1
355 */
Mark Marshall320d53d2012-09-09 23:06:03 +0000356 mtspr(SPRN_TSR, TSR_WIS);
wdenk42d1f032003-10-15 23:53:47 +0000357}
Horst Kronstorferdf616ca2013-03-13 10:14:05 +0000358
359void
360watchdog_reset(void)
361{
362 int re_enable = disable_interrupts();
363
364 reset_85xx_watchdog();
365 if (re_enable)
366 enable_interrupts();
367}
wdenk42d1f032003-10-15 23:53:47 +0000368#endif /* CONFIG_WATCHDOG */
369
Sergei Poselenov740280e2008-06-06 15:42:40 +0200370/*
Andy Fleming80522dc2008-10-30 16:51:33 -0500371 * Initializes on-chip MMC controllers.
372 * to override, implement board_mmc_init()
373 */
374int cpu_mmc_init(bd_t *bis)
375{
376#ifdef CONFIG_FSL_ESDHC
377 return fsl_esdhc_mmc_init(bis);
378#else
379 return 0;
380#endif
381}
Becky Bruce199e2622010-06-17 11:37:25 -0500382
383/*
384 * Print out the state of various machine registers.
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530385 * Currently prints out LAWs, BR0/OR0 for LBC, CSPR/CSOR/Timing
386 * parameters for IFC and TLBs
Becky Bruce199e2622010-06-17 11:37:25 -0500387 */
Christophe Leroyf3603b42017-07-13 15:09:54 +0200388void print_reginfo(void)
Becky Bruce199e2622010-06-17 11:37:25 -0500389{
390 print_tlbcam();
391 print_laws();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530392#if defined(CONFIG_FSL_LBC)
Becky Bruce199e2622010-06-17 11:37:25 -0500393 print_lbc_regs();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530394#endif
Dipen Dudhatd789b5f2011-01-20 16:29:35 +0530395#ifdef CONFIG_FSL_IFC
396 print_ifc_regs();
397#endif
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530398
Becky Bruce199e2622010-06-17 11:37:25 -0500399}
York Sunebbe11d2010-09-28 15:20:33 -0700400
Becky Bruce38dba0c2010-12-17 17:17:56 -0600401/* Common ddr init for non-corenet fsl 85xx platforms */
402#ifndef CONFIG_FSL_CORENET
Scott Woodc97cd1b2012-09-20 19:02:18 -0500403#if (defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_SPL)) && \
404 !defined(CONFIG_SYS_INIT_L2_ADDR)
Simon Glassf1683aa2017-04-06 12:47:05 -0600405int dram_init(void)
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800406{
Alexander Graffa08d392014-04-11 17:09:45 +0200407#if defined(CONFIG_SPD_EEPROM) || defined(CONFIG_DDR_SPD) || \
York Sun10343402016-11-18 12:29:51 -0800408 defined(CONFIG_ARCH_QEMU_E500)
Simon Glass088454c2017-03-31 08:40:25 -0600409 gd->ram_size = fsl_ddr_sdram_size();
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800410#else
Simon Glass088454c2017-03-31 08:40:25 -0600411 gd->ram_size = (phys_size_t)CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800412#endif
Simon Glass088454c2017-03-31 08:40:25 -0600413
414 return 0;
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800415}
416#else /* CONFIG_SYS_RAMBOOT */
Simon Glassf1683aa2017-04-06 12:47:05 -0600417int dram_init(void)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600418{
419 phys_size_t dram_size = 0;
420
Becky Bruce810c4422010-12-17 17:17:58 -0600421#if defined(CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600422 {
423 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
424 unsigned int x = 10;
425 unsigned int i;
426
427 /*
428 * Work around to stabilize DDR DLL
429 */
430 out_be32(&gur->ddrdllcr, 0x81000000);
431 asm("sync;isync;msync");
432 udelay(200);
433 while (in_be32(&gur->ddrdllcr) != 0x81000100) {
434 setbits_be32(&gur->devdisr, 0x00010000);
435 for (i = 0; i < x; i++)
436 ;
437 clrbits_be32(&gur->devdisr, 0x00010000);
438 x++;
439 }
440 }
441#endif
442
York Sun1b3e3c42011-06-07 09:42:16 +0800443#if defined(CONFIG_SPD_EEPROM) || \
444 defined(CONFIG_DDR_SPD) || \
445 defined(CONFIG_SYS_DDR_RAW_TIMING)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600446 dram_size = fsl_ddr_sdram();
447#else
448 dram_size = fixed_sdram();
449#endif
450 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
451 dram_size *= 0x100000;
452
453#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
454 /*
455 * Initialize and enable DDR ECC.
456 */
457 ddr_enable_ecc(dram_size);
458#endif
459
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530460#if defined(CONFIG_FSL_LBC)
Becky Bruce38dba0c2010-12-17 17:17:56 -0600461 /* Some boards also have sdram on the lbc */
Becky Bruce70961ba2010-12-17 17:17:57 -0600462 lbc_sdram_init();
Dipen Dudhatbeba93e2011-01-19 12:46:27 +0530463#endif
Becky Bruce38dba0c2010-12-17 17:17:56 -0600464
Wolfgang Denk21cd5812011-07-25 10:13:53 +0200465 debug("DDR: ");
Simon Glass088454c2017-03-31 08:40:25 -0600466 gd->ram_size = dram_size;
467
468 return 0;
Becky Bruce38dba0c2010-12-17 17:17:56 -0600469}
Zhao Chenhuic1fc2d42011-01-28 17:58:37 +0800470#endif /* CONFIG_SYS_RAMBOOT */
Becky Bruce38dba0c2010-12-17 17:17:56 -0600471#endif
472
York Sunebbe11d2010-09-28 15:20:33 -0700473#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
474
475/* Board-specific functions defined in each board's ddr.c */
476void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
York Sun1d71efb2014-08-01 15:51:00 -0700477 unsigned int ctrl_num, unsigned int dimm_slots_per_ctrl);
York Sunebbe11d2010-09-28 15:20:33 -0700478void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
479 phys_addr_t *rpn);
480unsigned int
481 setup_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
482
Becky Bruce9cdfe282011-07-18 18:49:15 -0500483void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg);
484
York Sunebbe11d2010-09-28 15:20:33 -0700485static void dump_spd_ddr_reg(void)
486{
487 int i, j, k, m;
488 u8 *p_8;
489 u32 *p_32;
York Sun51370d52016-12-28 08:43:45 -0800490 struct ccsr_ddr __iomem *ddr[CONFIG_SYS_NUM_DDR_CTLRS];
York Sunebbe11d2010-09-28 15:20:33 -0700491 generic_spd_eeprom_t
York Sun51370d52016-12-28 08:43:45 -0800492 spd[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_DIMM_SLOTS_PER_CTLR];
York Sunebbe11d2010-09-28 15:20:33 -0700493
York Sun51370d52016-12-28 08:43:45 -0800494 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sun1d71efb2014-08-01 15:51:00 -0700495 fsl_ddr_get_spd(spd[i], i, CONFIG_DIMM_SLOTS_PER_CTLR);
York Sunebbe11d2010-09-28 15:20:33 -0700496
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400497 puts("SPD data of all dimms (zero value is omitted)...\n");
York Sunebbe11d2010-09-28 15:20:33 -0700498 puts("Byte (hex) ");
499 k = 1;
York Sun51370d52016-12-28 08:43:45 -0800500 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunebbe11d2010-09-28 15:20:33 -0700501 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++)
502 printf("Dimm%d ", k++);
503 }
504 puts("\n");
505 for (k = 0; k < sizeof(generic_spd_eeprom_t); k++) {
506 m = 0;
507 printf("%3d (0x%02x) ", k, k);
York Sun51370d52016-12-28 08:43:45 -0800508 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunebbe11d2010-09-28 15:20:33 -0700509 for (j = 0; j < CONFIG_DIMM_SLOTS_PER_CTLR; j++) {
510 p_8 = (u8 *) &spd[i][j];
511 if (p_8[k]) {
512 printf("0x%02x ", p_8[k]);
513 m++;
514 } else
515 puts(" ");
516 }
517 }
518 if (m)
519 puts("\n");
520 else
521 puts("\r");
522 }
523
York Sun51370d52016-12-28 08:43:45 -0800524 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunebbe11d2010-09-28 15:20:33 -0700525 switch (i) {
526 case 0:
York Sun5614e712013-09-30 09:22:09 -0700527 ddr[i] = (void *)CONFIG_SYS_FSL_DDR_ADDR;
York Sunebbe11d2010-09-28 15:20:33 -0700528 break;
York Sun51370d52016-12-28 08:43:45 -0800529#if defined(CONFIG_SYS_FSL_DDR2_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 1)
York Sunebbe11d2010-09-28 15:20:33 -0700530 case 1:
York Sun5614e712013-09-30 09:22:09 -0700531 ddr[i] = (void *)CONFIG_SYS_FSL_DDR2_ADDR;
York Sunebbe11d2010-09-28 15:20:33 -0700532 break;
533#endif
York Sun51370d52016-12-28 08:43:45 -0800534#if defined(CONFIG_SYS_FSL_DDR3_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 2)
York Suna4c66502012-08-17 08:22:39 +0000535 case 2:
York Sun5614e712013-09-30 09:22:09 -0700536 ddr[i] = (void *)CONFIG_SYS_FSL_DDR3_ADDR;
York Suna4c66502012-08-17 08:22:39 +0000537 break;
538#endif
York Sun51370d52016-12-28 08:43:45 -0800539#if defined(CONFIG_SYS_FSL_DDR4_ADDR) && (CONFIG_SYS_NUM_DDR_CTLRS > 3)
York Suna4c66502012-08-17 08:22:39 +0000540 case 3:
York Sun5614e712013-09-30 09:22:09 -0700541 ddr[i] = (void *)CONFIG_SYS_FSL_DDR4_ADDR;
York Suna4c66502012-08-17 08:22:39 +0000542 break;
543#endif
York Sunebbe11d2010-09-28 15:20:33 -0700544 default:
545 printf("%s unexpected controller number = %u\n",
546 __func__, i);
547 return;
548 }
549 }
550 printf("DDR registers dump for all controllers "
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400551 "(zero value is omitted)...\n");
York Sunebbe11d2010-09-28 15:20:33 -0700552 puts("Offset (hex) ");
York Sun51370d52016-12-28 08:43:45 -0800553 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++)
York Sunebbe11d2010-09-28 15:20:33 -0700554 printf(" Base + 0x%04x", (u32)ddr[i] & 0xFFFF);
555 puts("\n");
York Sun9a17eb52013-11-18 10:29:32 -0800556 for (k = 0; k < sizeof(struct ccsr_ddr)/4; k++) {
York Sunebbe11d2010-09-28 15:20:33 -0700557 m = 0;
558 printf("%6d (0x%04x)", k * 4, k * 4);
York Sun51370d52016-12-28 08:43:45 -0800559 for (i = 0; i < CONFIG_SYS_NUM_DDR_CTLRS; i++) {
York Sunebbe11d2010-09-28 15:20:33 -0700560 p_32 = (u32 *) ddr[i];
561 if (p_32[k]) {
562 printf(" 0x%08x", p_32[k]);
563 m++;
564 } else
565 puts(" ");
566 }
567 if (m)
568 puts("\n");
569 else
570 puts("\r");
571 }
572 puts("\n");
573}
574
575/* invalid the TLBs for DDR and setup new ones to cover p_addr */
576static int reset_tlb(phys_addr_t p_addr, u32 size, phys_addr_t *phys_offset)
577{
578 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
579 unsigned long epn;
580 u32 tsize, valid, ptr;
York Sunebbe11d2010-09-28 15:20:33 -0700581 int ddr_esel;
582
Becky Bruce9cdfe282011-07-18 18:49:15 -0500583 clear_ddr_tlbs_phys(p_addr, size>>20);
York Sunebbe11d2010-09-28 15:20:33 -0700584
585 /* Setup new tlb to cover the physical address */
586 setup_ddr_tlbs_phys(p_addr, size>>20);
587
588 ptr = vstart;
589 ddr_esel = find_tlb_idx((void *)ptr, 1);
590 if (ddr_esel != -1) {
591 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, phys_offset);
592 } else {
593 printf("TLB error in function %s\n", __func__);
594 return -1;
595 }
596
597 return 0;
598}
599
600/*
601 * slide the testing window up to test another area
602 * for 32_bit system, the maximum testable memory is limited to
603 * CONFIG_MAX_MEM_MAPPED
604 */
605int arch_memory_test_advance(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
606{
607 phys_addr_t test_cap, p_addr;
608 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
609
610#if !defined(CONFIG_PHYS_64BIT) || \
611 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
612 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
613 test_cap = p_size;
614#else
615 test_cap = gd->ram_size;
616#endif
617 p_addr = (*vstart) + (*size) + (*phys_offset);
618 if (p_addr < test_cap - 1) {
619 p_size = min(test_cap - p_addr, CONFIG_MAX_MEM_MAPPED);
620 if (reset_tlb(p_addr, p_size, phys_offset) == -1)
621 return -1;
622 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
623 *size = (u32) p_size;
624 printf("Testing 0x%08llx - 0x%08llx\n",
625 (u64)(*vstart) + (*phys_offset),
626 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
627 } else
628 return 1;
629
630 return 0;
631}
632
633/* initialization for testing area */
634int arch_memory_test_prepare(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
635{
636 phys_size_t p_size = min(gd->ram_size, CONFIG_MAX_MEM_MAPPED);
637
638 *vstart = CONFIG_SYS_DDR_SDRAM_BASE;
639 *size = (u32) p_size; /* CONFIG_MAX_MEM_MAPPED < 4G */
640 *phys_offset = 0;
641
642#if !defined(CONFIG_PHYS_64BIT) || \
643 !defined(CONFIG_SYS_INIT_RAM_ADDR_PHYS) || \
644 (CONFIG_SYS_INIT_RAM_ADDR_PHYS < 0x100000000ull)
645 if (gd->ram_size > CONFIG_MAX_MEM_MAPPED) {
646 puts("Cannot test more than ");
647 print_size(CONFIG_MAX_MEM_MAPPED,
648 " without proper 36BIT support.\n");
649 }
650#endif
651 printf("Testing 0x%08llx - 0x%08llx\n",
652 (u64)(*vstart) + (*phys_offset),
653 (u64)(*vstart) + (*phys_offset) + (*size) - 1);
654
655 return 0;
656}
657
658/* invalid TLBs for DDR and remap as normal after testing */
659int arch_memory_test_cleanup(u32 *vstart, u32 *size, phys_addr_t *phys_offset)
660{
661 unsigned long epn;
662 u32 tsize, valid, ptr;
663 phys_addr_t rpn = 0;
664 int ddr_esel;
665
666 /* disable the TLBs for this testing */
667 ptr = *vstart;
668
669 while (ptr < (*vstart) + (*size)) {
670 ddr_esel = find_tlb_idx((void *)ptr, 1);
671 if (ddr_esel != -1) {
672 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
673 disable_tlb(ddr_esel);
674 }
675 ptr += TSIZE_TO_BYTES(tsize);
676 }
677
678 puts("Remap DDR ");
679 setup_ddr_tlbs(gd->ram_size>>20);
680 puts("\n");
681
682 return 0;
683}
684
685void arch_memory_failure_handle(void)
686{
687 dump_spd_ddr_reg();
688}
689#endif